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-Tag: pre_ajp_proxy~1989 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7289968ef4df70a83a69a0442f5c6cd57122f28b;p=thirdparty%2Fapache%2Fhttpd.git 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 a6388475aa7..db5cc5d9a64 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");