manoj 99/11/02 23:29:07
Modified: . STATUS
src/lib/apr/threadproc/beos proc.c
src/lib/apr/threadproc/unix proc.c
Log:
Fix yet another APR bug. This one caused sporadic CGI failures.
Revision Changes Path
1.9 +3 -8 apache-2.0/STATUS
Index: STATUS
===================================================================
RCS file: /home/cvs/apache-2.0/STATUS,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -u -r1.8 -r1.9
--- STATUS 1999/11/02 23:18:28 1.8
+++ STATUS 1999/11/03 07:29:02 1.9
@@ -1,5 +1,5 @@
Apache 2.0 STATUS:
-Last modified at [$Date: 1999/11/02 23:18:28 $]
+Last modified at [$Date: 1999/11/03 07:29:02 $]
Release:
@@ -12,14 +12,9 @@
RELEASE SHOWSTOPPERS:
- * CGI programs will stop working after a little while
- Status: Manoj is working on this
-
* suEXEC doesn't work
- Status: Manoj has finished an implementation, but it needs
- polishing. Specifically, it puts a bunch of Unix stuff into
- portable code. Current patch will be sent to new-httpd upon
- request.
+ Status: Manoj has posted an patch to fix this.
+ <[EMAIL PROTECTED]>
* Windows NT port isn't done
Status: Bill is working on this through his MPM work, and Ryan
1.9 +1 -0 apache-2.0/src/lib/apr/threadproc/beos/proc.c
Index: proc.c
===================================================================
RCS file: /home/cvs/apache-2.0/src/lib/apr/threadproc/beos/proc.c,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -u -r1.8 -r1.9
--- proc.c 1999/10/22 22:06:16 1.8
+++ proc.c 1999/11/03 07:29:05 1.9
@@ -87,6 +87,7 @@
(*new)->child_err = NULL;
(*new)->currdir = NULL;
(*new)->cmdtype = APR_PROGRAM;
+ (*new)->detached = 0;
return APR_SUCCESS;
}
1.9 +1 -0 apache-2.0/src/lib/apr/threadproc/unix/proc.c
Index: proc.c
===================================================================
RCS file: /home/cvs/apache-2.0/src/lib/apr/threadproc/unix/proc.c,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -u -r1.8 -r1.9
--- proc.c 1999/10/20 18:27:48 1.8
+++ proc.c 1999/11/03 07:29:06 1.9
@@ -89,6 +89,7 @@
(*new)->child_err = NULL;
(*new)->currdir = NULL;
(*new)->cmdtype = APR_PROGRAM;
+ (*new)->detached = 0;
return APR_SUCCESS;
}