randy 97/01/11 21:17:27
Branch: src RELEASE_1_1_X
Modified: src http_request.c mod_dir.c
Log:
More changes to support fix for DirectoryIndex/stat() problem.
Reviewed by: Randy Terbush
Submitted by: Marc Slemko
Revision Changes Path
1.11.2.3 +1 -1 apache/src/http_request.c
Index: http_request.c
===================================================================
RCS file: /export/home/cvs/apache/src/http_request.c,v
retrieving revision 1.11.2.2
retrieving revision 1.11.2.3
diff -C3 -r1.11.2.2 -r1.11.2.3
*** http_request.c 1997/01/12 02:05:41 1.11.2.2
--- http_request.c 1997/01/12 05:17:24 1.11.2.3
***************
*** 197,203 ****
}
#if defined(ENOENT)
else {
! log_reason("unable to determine if index file exists (stat()
returned unexpected error)", r->filename, r);
return FORBIDDEN;
}
#endif
--- 197,203 ----
}
#if defined(ENOENT)
else {
! log_printf(r->server, "access to %s failed for client; unable to
determine if index file exists (stat() returned unexpected error)",
r->filename);
return FORBIDDEN;
}
#endif
1.10.2.1 +17 -1 apache/src/mod_dir.c