From b674411eb46c9e45f2740a1f9bac365e9a347e9c Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Tue, 30 Aug 2005 11:55:05 +0000 Subject: r9792: Rename StrCaseCmp -> strcasecmp_m. All these years I was thinking StrCaseCmp was sys_strcasecmp, while it is in fact strcasecmp_m! (This used to be commit 200a8f6652cb2de7a8037a7a4c2a204b50aee2b1) --- source4/utils/net/net.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source4/utils') diff --git a/source4/utils/net/net.c b/source4/utils/net/net.c index 787f71705b..b6f54a46ce 100644 --- a/source4/utils/net/net.c +++ b/source4/utils/net/net.c @@ -65,7 +65,7 @@ int net_run_function(struct net_context *ctx, } for (i=0; functable[i].name; i++) { - if (StrCaseCmp(argv[0], functable[i].name) == 0) + if (strcasecmp_m(argv[0], functable[i].name) == 0) return functable[i].fn(ctx, argc-1, argv+1); } @@ -88,7 +88,7 @@ int net_run_usage(struct net_context *ctx, } */ for (i=0; functable[i].name; i++) { - if (StrCaseCmp(argv[0], functable[i].name) == 0) + if (strcasecmp_m(argv[0], functable[i].name) == 0) if (functable[i].usage) { return functable[i].usage(ctx, argc-1, argv+1); } -- cgit