summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>1998-05-13 02:32:40 +0000
committerAndrew Tridgell <tridge@samba.org>1998-05-13 02:32:40 +0000
commit24648182497bd029bd75ad151d4c091bc57393f8 (patch)
treeae8e92130cb587c125b566f607b50f63f3cc096b
parent38271ae46e8c960de7ab0c785dbbea3dc39b390b (diff)
downloadsamba-24648182497bd029bd75ad151d4c091bc57393f8.tar.gz
use StrCaseCmp not strcasecmp in a qsort.
Otherwise it won't compile on some platforms
-rw-r--r--source/client/client.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/client/client.c b/source/client/client.c
index ee9e9f18cdb..a77e848c30d 100644
--- a/source/client/client.c
+++ b/source/client/client.c
@@ -2969,7 +2969,7 @@ static BOOL browse_host(BOOL sort)
}
if (sort)
- qsort(p,count,20,QSORT_CAST strcasecmp);
+ qsort(p,count,20,QSORT_CAST StrCaseCmp);
for (i=0;i<count;i++)
{