manoj 99/02/15 22:09:47
Modified: pthreads/src/main http_main.c
Log:
When we close the accept socket, we should also kill the cleanup that
goes with it.
Revision Changes Path
1.28 +1 -1 apache-apr/pthreads/src/main/http_main.c
Index: http_main.c
===================================================================
RCS file: /home/cvs/apache-apr/pthreads/src/main/http_main.c,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -u -r1.27 -r1.28
--- http_main.c 1999/02/16 06:07:09 1.27
+++ http_main.c 1999/02/16 06:09:46 1.28
@@ -393,7 +393,7 @@
lr = ap_listeners;
while (lr->next != NULL) {
- close(lr->fd);
+ ap_pclosesocket(pconf, lr->fd);
lr= lr->next;
}
}