1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-23 09:57:40 +03:00

Use StrCaseCmp in the dirsort module

This commit is contained in:
Volker Lendecke 2009-03-22 11:39:10 +01:00
parent 2835d0d463
commit 14df86e9e3

View File

@ -23,7 +23,7 @@
static int compare_dirent (const void *a, const void *b) {
const SMB_STRUCT_DIRENT *da = (const SMB_STRUCT_DIRENT *) a;
const SMB_STRUCT_DIRENT *db = (const SMB_STRUCT_DIRENT *) b;
return strcmp(da->d_name, db->d_name);
return StrCaseCmp(da->d_name, db->d_name);
}
struct dirsort_privates {