diff options
Diffstat (limited to 'src/statfile.c')
-rw-r--r-- | src/statfile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/statfile.c b/src/statfile.c index 048ebc485..d1382e368 100644 --- a/src/statfile.c +++ b/src/statfile.c @@ -35,7 +35,7 @@ cmpstatfile (const void *a, const void *b) { const stat_file_t *s1 = a, *s2 = b; - return rspamd_strcase_equal (s1->filename, s2->filename); + return g_ascii_strcasecmp (s1->filename, s2->filename); } /* Check whether specified file is statistic file and calculate its len in blocks */ |