cvs commit: apache-apr/pthreads/src/main http_main.c

1999-02-18 Thread manoj
manoj 99/02/17 21:39:53 Modified:pthreads/src/main http_main.c Log: During graceful restart we close our listeners to kick our threads out of accept(), we seem to be missing the first file descriptor, probably because of an errant cut-and-paste. I think this bug didn't

cvs commit: apache-1.3/src/os/win32 util_win32.c

1999-02-18 Thread pcs
pcs 99/02/18 03:07:15 Modified:src/os/win32 util_win32.c Log: The code to reject bad filenames was also rejecting filenames containing characters in the range 0x80 to 0xff. This was preventing access to files containing non-ASCII characters, such as accented characters.

cvs commit: apache-apr/pthreads/src/main http_main.c

1999-02-18 Thread rbb
rbb 99/02/18 10:06:51 Modified:pthreads/src/main http_main.c Log: Logic for single thread signal handler. Submitted by: Manoj Kasichainula Revision ChangesPath 1.46 +78 -59apache-apr/pthreads/src/main/http_main.c Index: http_main.c

cvs commit: apache-apr/pthreads/src/main http_main.c

1999-02-18 Thread rbb
rbb 99/02/18 10:17:42 Modified:pthreads/src/main http_main.c Log: This patch keeps our server accepting connections over restarts. It basically puts back in logic from 1.3 that was taken out because of other bugs getting in the way of our restarts keeping their sockets

cvs commit: apache-apr/pthreads/src/main http_main.c

1999-02-18 Thread rbb
rbb 99/02/18 10:40:57 Modified:pthreads/src/main http_main.c Log: Just putting back in a void in a function def. Minor change, but easy enough to put it back. Revision ChangesPath 1.48 +1 -1 apache-apr/pthreads/src/main/http_main.c Index:

cvs commit: apache-1.3/src/modules/standard mod_log_config.c

1999-02-18 Thread coar
coar99/02/18 11:28:22 Modified:src/modules/standard mod_log_config.c Log: D'oh! (!fmt) accidentally turned into (fmt != NULL), inverting the logic and causing a NULL pointer to be passed where it wasn't permitted. Obtained from:Ask Bjoern