diff options
author | Bradley Nicholes <bnicholes@apache.org> | 2003-03-18 16:13:42 +0100 |
---|---|---|
committer | Bradley Nicholes <bnicholes@apache.org> | 2003-03-18 16:13:42 +0100 |
commit | 7289968ef4df70a83a69a0442f5c6cd57122f28b (patch) | |
tree | 3a67cd51de7ca31c16f3e827fac0168bd9fdecd0 | |
parent | OpenSSL should be included as "openssl/ssl.h" and not "ssl.h" (and rely on the (diff) | |
download | apache2-7289968ef4df70a83a69a0442f5c6cd57122f28b.tar.xz apache2-7289968ef4df70a83a69a0442f5c6cd57122f28b.zip |
Fixed a small logic problem when printing out the console command help
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
-rw-r--r-- | server/mpm/netware/mpm_netware.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 <instance ID>]\n"); printf("Commands:\n"); |