cvs commit: apache-2.0/src/lib/apr/file_io/win32 filedup.c open.c pipe.c

2000-02-15 Thread stoddard
stoddard00/02/14 16:15:49 Modified:src/lib/apr/file_io/win32 filedup.c open.c pipe.c Log: Fix some Windows APR problems found while trying to get piped logs working. Revision ChangesPath 1.5 +19 -6 apache-2.0/src/lib/apr/file_io/win32/filedup.c Index: filed

cvs commit: apache-2.0/src/lib/apr/file_io/win32 filedup.c

2000-02-15 Thread stoddard
stoddard00/02/14 16:48:42 Modified:src/lib/apr/file_io/win32 filedup.c Log: Check for DuplicateHandle() failure. Revision ChangesPath 1.6 +12 -4 apache-2.0/src/lib/apr/file_io/win32/filedup.c Index: filedup.c ==

cvs commit: apache-2.0/src/main http_log.c

2000-02-15 Thread stoddard
stoddard00/02/14 16:54:18 Modified:src/main http_log.c Log: First step to get piped logs working on Windows (and Unix as well). There are still all kinds of problems in http_log.c. This patch just barely scratches the surface. Revision ChangesPath 1.28 +11 -12

new home for @apache.org lists.

2000-02-15 Thread Brian Behlendorf
Apologies in advance for any duplicates and please, if you choose to respond to this message, do *not* respond to all, just to me. The mail for addresses @apache.org has been moved to a new machine, and with it to a new mailing list manager, ezmlm (ta ta majordumbo). To get the list of admin

Re: new home for @apache.org lists.

2000-02-15 Thread Brian Behlendorf
Someone asked about what headers to use for filtering. The "Mailing-List" header is guaranteed to be there and correspond to the exact list you're interested in, and won't be there on private copies when someone responds to you directly, cc'ing the list. So I recommend filtering on that instead

Re: new home for @apache.org lists.

2000-02-15 Thread James H. Cloos Jr.
> "Brian" == Brian Behlendorf <[EMAIL PROTECTED]> writes: Brian> Someone asked about what headers to use for filtering. The Brian> "Mailing-List" header is guaranteed to be there and correspond Brian> to the exact list you're interested in, Actualy, I find that this procmail recipe is best:

Re: new home for @apache.org lists.

2000-02-15 Thread Greg Stein
On Tue, 15 Feb 2000, Brian Behlendorf wrote: > Someone asked about what headers to use for filtering. The "Mailing-List" > header is guaranteed to be there and correspond to the exact list you're > interested in, and won't be there on private copies when someone responds > to you directly, cc'ing

cvs commit: apache-2.0/src/modules/mpm/winnt winnt.c

2000-02-15 Thread stoddard
stoddard00/02/15 13:20:44 Modified:src/modules/mpm/winnt winnt.c Log: Don't close the duplicated AcceptEx completion port handle in the parent. Check the return code when duplicating the acceptex completion port. Get rid of the event routine wrappers. Revision ChangesPa

cvs commit: apache-2.0/src/lib/apr/file_io/win32 filedup.c

2000-02-15 Thread stoddard
stoddard00/02/15 14:38:30 Modified:src/lib/apr/file_io/win32 filedup.c Log: Return APR_ENOTIMPL on Windows if caller attempts dup2. Revision ChangesPath 1.7 +3 -6 apache-2.0/src/lib/apr/file_io/win32/filedup.c Index: filedup.c ===

cvs commit: apache-2.0/src/main http_log.c

2000-02-15 Thread stoddard
stoddard00/02/15 14:51:27 Modified:src/main http_log.c Log: ap_dupfile (specifically dup2) is not available in a general form under Windows. So use SetStdHandle directly. A single call to ap_dup2stderr() (or similar) could replace the entire chunk of code in the #ifdef #else #e