dgaudet 98/02/21 04:25:43
Modified: src CHANGES mod_include.c
Log:
boy that was a dumb patch, back it out
Revision Changes Path
1.298 +0 -5 apache-1.2/src/CHANGES
Index: CHANGES
===================================================================
RCS file: /export/home/cvs/apache-1.2/src/CHANGES,v
retrieving revision 1.297
retrieving revision 1.298
diff -u -r1.297 -r1.298
--- CHANGES 1998/02/21 11:44:08 1.297
+++ CHANGES 1998/02/21 12:25:40 1.298
@@ -1,8 +1,3 @@
-Changes with Apache 1.2.7
-
- *) Work around a broken C preprocessor in mod_include.
- [Dean Gaudet] PR#1717
-
Changes with Apache 1.2.6
*) Increase the robustness of the child_main loop. When unexpected
1.38 +1 -3 apache-1.2/src/mod_include.c
Index: mod_include.c
===================================================================
RCS file: /export/home/cvs/apache-1.2/src/mod_include.c,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -r1.37 -r1.38
--- mod_include.c 1998/02/21 11:44:09 1.37
+++ mod_include.c 1998/02/21 12:25:41 1.38
@@ -1023,11 +1023,9 @@
}
else {
int l, x;
-#if defined(BSD)
-#if BSD > 199305
+#if defined(BSD) && BSD > 199305
/* ap_snprintf can't handle %qd */
sprintf(tag, "%qd", finfo.st_size);
-#endif
#else
ap_snprintf(tag, sizeof(tag), "%ld", finfo.st_size);
#endif