Re: [PHP-DEV] php_stream_display_wrapper_errors issue

2008-04-14 Thread Gregory Beaver
Pierre Joye wrote: > Hi Greg, > > On Mon, Apr 14, 2008 at 12:17 AM, Gregory Beaver <[EMAIL PROTECTED]> wrote: > >> Hi, >> >> If a stream wrapper does not log errors, by default, we grab >> strerror(errno) to figure out the error message, but this is not a good >> idea for any wrapper but plai

Re: [PHP-DEV] php_stream_display_wrapper_errors issue

2008-04-14 Thread Pierre Joye
Hi Greg, On Mon, Apr 14, 2008 at 12:17 AM, Gregory Beaver <[EMAIL PROTECTED]> wrote: > Hi, > > If a stream wrapper does not log errors, by default, we grab > strerror(errno) to figure out the error message, but this is not a good > idea for any wrapper but plain_wrapper for the obvious reason t

[PHP-DEV] php_stream_display_wrapper_errors issue

2008-04-13 Thread Gregory Beaver
Hi, If a stream wrapper does not log errors, by default, we grab strerror(errno) to figure out the error message, but this is not a good idea for any wrapper but plain_wrapper for the obvious reason that errno is not used by wrappers that don't use sys calls. Is this patch against 5.3 acceptable