From: Paul Querna Date: Fri, 29 Dec 2006 05:27:49 +0000 (+0000) Subject: Improve the error message, include the full path of the file we are actually trying... X-Git-Tag: 2.3.0~1952 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4794b34ea9f5175b923b66645f36a33674e44480;p=apache Improve the error message, include the full path of the file we are actually trying to call stat on. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@490920 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/request.c b/server/request.c index 4948736fa4..03493e32d3 100644 --- a/server/request.c +++ b/server/request.c @@ -566,7 +566,8 @@ AP_DECLARE(int) ap_directory_walk(request_rec *r) * here. */ ap_log_rerror(APLOG_MARK, APLOG_ERR, rv, r, - "access to %s failed", r->uri); + "access to %s failed; stat of '%s' failed.", + r->uri, r->filename); return r->status = HTTP_FORBIDDEN; } if (thisinfo.filetype == APR_LNK) {