From c60be447cec48371593cc09154ea5887095ac465 Mon Sep 17 00:00:00 2001 From: Bill Stoddard Date: Tue, 21 Dec 1999 14:45:53 +0000 Subject: [PATCH] Fix compile break introduced to Apache 2.0 by the mass vhosting security fix. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@84350 13f79535-47bb-0310-9956-ffa450edef68 --- server/vhost.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/vhost.c b/server/vhost.c index fcb25e61d0..400abfa11f 100644 --- a/server/vhost.c +++ b/server/vhost.c @@ -700,7 +700,7 @@ static void fix_hostname(request_rec *r) bad: r->status = HTTP_BAD_REQUEST; - ap_log_rerror(APLOG_MARK, APLOG_NOERRNO|APLOG_ERR, r, + ap_log_rerror(APLOG_MARK, APLOG_NOERRNO|APLOG_ERR, 0, r, "Client sent malformed Host header"); return; } -- 2.50.1