From 517a0c3ec2af39b279d7b22a493b30546542fc05 Mon Sep 17 00:00:00 2001 From: Christophe Jaillet Date: Sun, 8 May 2022 06:16:58 +0000 Subject: [PATCH] Add missing 'break' [skip ci] git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1900679 13f79535-47bb-0310-9956-ffa450edef68 --- modules/http/http_protocol.c | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/http/http_protocol.c b/modules/http/http_protocol.c index e324bbcbb1c..f1ed1f6cc20 100644 --- a/modules/http/http_protocol.c +++ b/modules/http/http_protocol.c @@ -1678,6 +1678,7 @@ static void rrl_log_error(request_rec *r, rrl_error error, const char *etoken) case rrl_missinguri: ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r, APLOGNO(03446) "HTTP Request Line; Missing URI"); + break; case rrl_baduri: ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r, APLOGNO(03454) "HTTP Request Line; URI incorrectly encoded: '%.*s'", -- 2.47.2