From b0841c5eeb9fa99f5f56a5736a7256e5e68697fc Mon Sep 17 00:00:00 2001 From: Jeff Trawick Date: Wed, 16 Jan 2002 21:34:32 +0000 Subject: [PATCH] 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 --- src/main/http_core.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); -- 2.47.2