From 4794b34ea9f5175b923b66645f36a33674e44480 Mon Sep 17 00:00:00 2001 From: Paul Querna Date: Fri, 29 Dec 2006 05:27:49 +0000 Subject: [PATCH] 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 --- server/request.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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) { -- 2.40.0