You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@httpd.apache.org by Mladen Turk <ml...@mail.inet.hr> on 2001/08/16 08:58:28 UTC

[PATCH] ApacheMonitor OS_VERSION

Hi,

The patch enables using 'version >= OS_VERSION_WINNT' properly.
Right now Open Services menu item is shown on WIN9X too.




RCS file: /home/cvspublic/httpd-2.0/support/win32/ApacheMonitor.c,v
retrieving revision 1.5
diff -u -r1.5 ApacheMonitor.c
@@ -81,8 +81,8 @@
 #include "ApacheMonitor.h"
 
 
-#define OS_VERSION_WINNT    1
-#define OS_VERSION_WIN9X    2
+#define OS_VERSION_WIN9X    1
+#define OS_VERSION_WINNT    2
 #define OS_VERSION_WIN2K    3
 /* Should be enough */
 #define MAX_APACHE_SERVICES 128

MT.