diff options
Diffstat (limited to 'source3/utils/net_group.c')
-rw-r--r-- | source3/utils/net_group.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/utils/net_group.c b/source3/utils/net_group.c index 7114f1feea..505856a008 100644 --- a/source3/utils/net_group.c +++ b/source3/utils/net_group.c @@ -55,7 +55,7 @@ int net_group(struct net_context *c, int argc, const char **argv) if (argc < 1) return net_group_usage(c, argc, argv); - if (StrCaseCmp(argv[0], "HELP") == 0) { + if (strcasecmp_m(argv[0], "HELP") == 0) { net_group_usage(c, argc, argv); return 0; } |