Could this be a bug in file_io\win32\dir.c ?

2008-07-10 Thread Friedrich Dominicus
#if APR_HAS_ANSI_FS ELSE_WIN_OS_IS_ANSI { /* This code path is always be invoked by apr_dir_open or * apr_dir_rewind, so return without filling out the finfo. */ if (thedir-dirhand == INVALID_HANDLE_VALUE) { /* '/' terminated, so add the '*'

Re: Could this be a bug in file_io\win32\dir.c ?

2008-07-10 Thread William A. Rowe, Jr.
Friedrich Dominicus wrote: #if APR_HAS_ANSI_FS ELSE_WIN_OS_IS_ANSI { /* This code path is always be invoked by apr_dir_open or * apr_dir_rewind, so return without filling out the finfo. */ if (thedir-dirhand == INVALID_HANDLE_VALUE) { /*

Re: Adrift with Apache

2008-07-10 Thread Greg Ames
On Wed, Jul 9, 2008 at 1:00 PM, Steve Comstock [EMAIL PROTECTED] wrote: Hmmm. Seems to me the configure script ought to do the check for an existing file, that's in the patch, but it happens at buildconf time fwiw. I picked up autoconf-2.62 from a GNU mirror, but I was reluctant to use it;

Implementing apr_hash_do(vdo)

2008-07-10 Thread Mladen Turk
Hi, Unlike apr_table, apr_hash doesn't have iterator callback API. IMO this would be very useful function for hash usages where iterative operation on all table elements is required. Right now this is done via hash_first, hash_next, hash_this operation, and thats fine, but IMO apr_table_do like