]> granicus.if.org Git - apache/commitdiff
Fixed a small logic problem when printing out the console command help
authorBradley Nicholes <bnicholes@apache.org>
Tue, 18 Mar 2003 15:13:42 +0000 (15:13 +0000)
committerBradley Nicholes <bnicholes@apache.org>
Tue, 18 Mar 2003 15:13:42 +0000 (15:13 +0000)
Submitted by: Ulrich Neumann <U_Neumann@gne.de>

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@99017 13f79535-47bb-0310-9956-ffa450edef68

server/mpm/netware/mpm_netware.c

index a6388475aa78a1a416108da754d7c22db67ec7b2..db5cc5d9a64447da854155b678cc993bfb761205 100644 (file)
@@ -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 <instance ID>]\n");
             printf("Commands:\n");