dgaudet 98/06/15 09:46:14
Modified: src CHANGES
src/modules/standard mod_status.c
Log:
clean up a warning in mod_status for OS/2
Submitted by: Brian Havard
Revision Changes Path
1.916 +2 -0 apache-1.3/src/CHANGES
Index: CHANGES
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/CHANGES,v
retrieving revision 1.915
retrieving revision 1.916
diff -u -r1.915 -r1.916
--- CHANGES 1998/06/14 18:33:08 1.915
+++ CHANGES 1998/06/15 16:46:10 1.916
@@ -1,5 +1,7 @@
Changes with Apache 1.3.1
+ *) PORT: clean up a warning in mod_status for OS/2. [Brian Havard]
+
*) Make table elements const. This may prevent obscure errors. [Ben Laurie]
*) Fix parsing of FTP `SIZE' responses in proxy module: The newline was not
1.89 +1 -1 apache-1.3/src/modules/standard/mod_status.c
Index: mod_status.c
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/modules/standard/mod_status.c,v
retrieving revision 1.88
retrieving revision 1.89
diff -u -r1.88 -r1.89
--- mod_status.c 1998/06/04 20:13:21 1.88
+++ mod_status.c 1998/06/15 16:46:13 1.89
@@ -232,7 +232,7 @@
long req_time;
#if defined(NEXT)
float tick = HZ;
-#elif !defined(WIN32)
+#elif !defined(NO_TIMES)
float tick = sysconf(_SC_CLK_TCK);
#endif
#endif /* STATUS */