From: Jeff Trawick Date: Wed, 16 Jan 2002 21:34:32 +0000 (+0000) Subject: log the requested file when reporting a weird problem serving a X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b0841c5eeb9fa99f5f56a5736a7256e5e68697fc;p=thirdparty%2Fapache%2Fhttpd.git log the requested file when reporting a weird problem serving a byterange git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@92870 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/main/http_core.c b/src/main/http_core.c index a678e24a14b..3cd27156c61 100644 --- a/src/main/http_core.c +++ b/src/main/http_core.c @@ -3880,8 +3880,8 @@ static int default_handler(request_rec *r) */ if (fseek(f, offset, SEEK_SET)) { ap_log_error(APLOG_MARK, APLOG_ERR, r->server, - "Failed to fseek for byterange (%ld, %ld)", - offset, length); + "Failed to fseek for byterange (%ld, %ld): %s", + offset, length, r->filename); } else { ap_send_fd_length(f, r, length);