[PHP-DEV] Bug #784 Updated: stat() bug introduced in 3.0.4? From: Bug Database (php-dev <email protected>)
Date: 09/25/98

ID: 784
Updated by: zeev
Reported By: russell <email protected>
Status: Closed
Bug Type: Other
Assigned To:
Comments:

This turned out to be an Apache bug. It's fixed in
the 1.3.3-dev tree, with this patch:

*** Ohttp_config.c Fri Sep 25 13:26:55 1998
--- http_config.c Fri Sep 25 11:40:57 1998
***************
*** 1247,1253 ****
          *result = dc;
      }
      else {
! if (errno == ENOENT || errno == ENOTDIR)
              dc = NULL;
          else {
              ap_log_rerror(APLOG_MARK, APLOG_CRIT, r,
--- 1247,1253 ----
          *result = dc;
      }
      else {
! if (errno == ENOENT || errno == ENOTDIR || (!access_name[0]))
              dc = NULL;
          else {
              ap_log_rerror(APLOG_MARK, APLOG_CRIT, r,

Full Bug description available at: http://ca.php.net/bugs.php3?id=784

--
PHP Development Mailing List   http://www.php.net/
To unsubscribe send an empty message to php-dev-unsubscribe <email protected>
For help: php-dev-help <email protected>