From: Bradley Nicholes Date: Tue, 18 Mar 2003 15:13:42 +0000 (+0000) Subject: Fixed a small logic problem when printing out the console command help X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e2e202bf0ddc427f8be3e8112931f876dc80444b;p=apache Fixed a small logic problem when printing out the console command help Submitted by: Ulrich Neumann git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@99017 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/mpm/netware/mpm_netware.c b/server/mpm/netware/mpm_netware.c index a6388475aa..db5cc5d9a6 100644 --- a/server/mpm/netware/mpm_netware.c +++ b/server/mpm/netware/mpm_netware.c @@ -1156,7 +1156,7 @@ static int CommandLineInterpreter(scr_t screenID, const char *commandLine) } else { show_settings = 0; - if (!strnicmp("HELP",&szcommandLine[iCommandLen],3)) + if (strnicmp("HELP",&szcommandLine[iCommandLen],3)) printf("Unknown APACHE2 command %s\n", &szcommandLine[iCommandLen]); printf("Usage: APACHE2 [command] [-p ]\n"); printf("Commands:\n");