manoj 98/09/16 13:51:09
Modified: src/support suexec.c
Log:
Fix a missing semicolon
Revision Changes Path
1.46 +1 -1 apache-1.3/src/support/suexec.c
Index: suexec.c
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/support/suexec.c,v
retrieving revision 1.45
retrieving revision 1.46
diff -u -r1.45 -r1.46
--- suexec.c 1998/09/10 09:23:59 1.45
+++ suexec.c 1998/09/16 20:51:08 1.46
@@ -211,7 +211,7 @@
sprintf(pathbuf, "PATH=%s", SAFE_PATH);
cleanenv[cidx] = strdup(pathbuf);
- cidx++
+ cidx++;
for (ep = environ; *ep && cidx < AP_ENVBUF-1; ep++) {
if (!strncmp(*ep, "HTTP_", 5)) {