[PATCH] Win32: include overlapped structure in WriteFile call

2002-12-19 Thread Alex Varju
A co-worker pointed out to me that the WriteFile call in apr_file_flush on Windows does not include the overlapped structure. I can't find anything in the logs or mail archives that indicates this is intentional, so I thought I'd pass this along. Alex. Index: srclib/apr/file_io/win32/readwrite.c

Re: Time zone problem with testtime...

2002-12-19 Thread rbb
This is a known problem with those tests. It is on my list to remove this dependancy, but I haven't had time to do it yet. If you want to fix the tests feel free, otherwise it will have to wait until I find the time. Ryan On Thu, 19 Dec 2002, Brad Nicholes wrote: >When I run the time test

Time zone problem with testtime...

2002-12-19 Thread Brad Nicholes
When I run the time test it fails on each of the local time tests. It appears that the hard coded time "now" will never match the hard coded string except in the time zone where this test was written. The test expects apr_time_exp_lt() to convert "now" to "12:05:36...", but in my time zone it

Re: problem with teststr

2002-12-19 Thread rbb
I fixed this last night by adding CuAssertStrNEquals. This bug has bitten me on Windows too. Thanks for pointing me in the right direction. Ryan On Wed, 18 Dec 2002, Brad Nicholes wrote: >It appears that the snprintf_noNULL() test in teststr will always > fails. Since apr_palloc() is no

Re: aprutils: HOWTO include apr_queue.c

2002-12-19 Thread Sebastian Bergmann
Damir Dezeljin wrote: > Is of any use if I send those 'new' project files to the list - e.g. > to add them to the CVS Not really, since you would have to sets of files to maintain of which one (MSVC 7) can easily be generated from the other (MSVC 6). -- Sebastian Bergmann http://sebasti

aprutils: HOWTO include apr_queue.c

2002-12-19 Thread Damir Dezeljin
Hi. Can someone pleas explain me how to add apr_queue to the library on Windows? I'm using VS.NET . I open 'aprutil.dsw' in apr-util dir. Choose convert all project files to VS 7 format (BTW: Is of any use if I send those 'new' project files to the list - e.g. to add them to the CVS). Then I add

Re: [time to move on I guess] APR_TMP_DIRECTORY

2002-12-19 Thread David Reid
Yeah nice thought but it's been vetoed by quite a few folks. You do read the same list I do don't you? :) david - Original Message - From: "Branko Äibej" <[EMAIL PROTECTED]> To: "David Reid" <[EMAIL PROTECTED]>; "APR Dev List" Sent: Tuesday, December 17, 2002 1:19 AM Subject: Re: [time t

Re: [PATCH] apr_dir_read doesn't return requested information

2002-12-19 Thread William A. Rowe, Jr.
As much as I agree 0 might be a valid inode... I strongly suspect that 0 would be reserved for the boot sector or other filesystem tables. I'm not too worried that 0 is a valid file of anything other than '/' Bill At 07:19 PM 12/18/2002, =?UTF-8?B?QnJhbmtvIMSMaWJlag==?= wrote: >William A. Rowe,

[STATUS] (apr-util) Wed Dec 18 23:45:31 EST 2002

2002-12-19 Thread Rodent of Unusual Size
APRUTIL LIBRARY STATUS: -*-text-*- Last modified at [$Date: 2002/09/13 23:15:22 $] Release: 0.9.2 : in progress 0.9.1 : Released as alpha on September 11, 2002 0.9.0 : Not released 2.0a9 : released December 12, 2000 RELEASE SHOWST

[STATUS] (apr) Wed Dec 18 23:45:18 EST 2002

2002-12-19 Thread Rodent of Unusual Size
APACHE PORTABLE RUNTIME (APR) LIBRARY STATUS: -*-text-*- Last modified at [$Date: 2002/12/10 20:32:40 $] Release: 0.9.2 : in progress 0.9.1 : released September 11, 2002 0.9.0 : released August 28, 2002 2.0a9 : released December 12, 2000 2.0a8 : re

Re: [PATCH] allow apr-util to detect Debian's db4.0

2002-12-19 Thread Justin Erenkrantz
--On Tuesday, December 17, 2002 9:58 PM + Philip Martin <[EMAIL PROTECTED]> wrote: Here's a patch that does it in the other order Index: build/apu-conf.m4 === RCS file: /home/cvspublic/apr-util/build/apu-conf.m4,v ... Committed.

Re: [PATCH] apr_dir_read doesn't return requested information

2002-12-19 Thread Branko Äibej
William A. Rowe, Jr. wrote: >At 11:48 AM 12/18/2002, William A. Rowe, Jr. wrote: > > >>At 08:14 AM 12/18/2002, Philip Martin wrote: >> >> >>>This is for dir.c version 1.71 with the patch reverted. The >>>Subversion code is svn_io_get_dirents in subversion/libsvn_subr/io.c, >>>it passes APR_

problem with teststr

2002-12-19 Thread Brad Nicholes
It appears that the snprintf_noNULL() test in teststr will always fails. Since apr_palloc() is not guaranteed to return initialized memory (which I think is why the test is written this way), after initializing the memory with the string "testing", the remaining 3 bytes can be garbage. After t