dgaudet 98/02/21 04:26:23
Modified: src CHANGES
src/modules/standard mod_include.c
Log:
boy that was a dumb patch, back it out
Revision Changes Path
1.649 +0 -3 apache-1.3/src/CHANGES
Index: CHANGES
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/CHANGES,v
retrieving revision 1.648
retrieving revision 1.649
diff -u -r1.648 -r1.649
--- CHANGES 1998/02/21 11:45:56 1.648
+++ CHANGES 1998/02/21 12:26:20 1.649
@@ -1,8 +1,5 @@
Changes with Apache 1.3b6
- *) Work around a broken C preprocessor in mod_include.
- [Dean Gaudet] PR#1717
-
*) Use SA_RESETHAND or SA_ONESHOT when installing the coredump handlers.
In particular the handlers could trigger themselves into an infinite
loop if RLimitMem was used with a small amount of memory -- too small
1.73 +1 -3 apache-1.3/src/modules/standard/mod_include.c
Index: mod_include.c
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/modules/standard/mod_include.c,v
retrieving revision 1.72
retrieving revision 1.73
diff -u -r1.72 -r1.73
--- mod_include.c 1998/02/21 11:45:59 1.72
+++ mod_include.c 1998/02/21 12:26:22 1.73
@@ -1049,11 +1049,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