bnicholes 2003/03/18 07:13:42
Modified: server/mpm/netware mpm_netware.c
Log:
Fixed a small logic problem when printing out the console command help
Submitted by: Ulrich Neumann <U_Neumann@gne.de>
Revision Changes Path
1.67 +1 -1 httpd-2.0/server/mpm/netware/mpm_netware.c
Index: mpm_netware.c
===================================================================
RCS file: /home/cvs/httpd-2.0/server/mpm/netware/mpm_netware.c,v
retrieving revision 1.66
retrieving revision 1.67
diff -u -r1.66 -r1.67
--- mpm_netware.c 3 Feb 2003 17:53:24 -0000 1.66
+++ mpm_netware.c 18 Mar 2003 15:13:42 -0000 1.67
@@ -1156,7 +1156,7 @@
}
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");
|