diff options
Diffstat (limited to 'util/fileutil.c')
-rw-r--r-- | util/fileutil.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/util/fileutil.c b/util/fileutil.c index 8c062c51e..ebc1383ab 100644 --- a/util/fileutil.c +++ b/util/fileutil.c @@ -153,7 +153,7 @@ compare_filenames( const char *a, const char *b ) abuf = gstrans(a); bbuf = gstrans(b); - c = stricmp(abuf, bbuf); + c = strcasecmp (abuf, bbuf); m_free(abuf); m_free(bbuf); @@ -228,5 +228,3 @@ leave: return rc; } - - |