summaryrefslogtreecommitdiffstats
path: root/modules/http2/h2_config.c
diff options
context:
space:
mode:
authorStefan Eissing <icing@apache.org>2023-08-28 10:33:22 +0200
committerStefan Eissing <icing@apache.org>2023-08-28 10:33:22 +0200
commit8595a9c91047ff6f90d92c6b41c7def2fa7e4df8 (patch)
treea9d1712994948163e698f6fa7c8a6b04957f2c6f /modules/http2/h2_config.c
parentAdd an hyper-link. (diff)
downloadapache2-8595a9c91047ff6f90d92c6b41c7def2fa7e4df8.tar.xz
apache2-8595a9c91047ff6f90d92c6b41c7def2fa7e4df8.zip
Fix missing break in config settings, code style
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1911961 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r--modules/http2/h2_config.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/http2/h2_config.c b/modules/http2/h2_config.c
index e87b1c82a4..22653d45d5 100644
--- a/modules/http2/h2_config.c
+++ b/modules/http2/h2_config.c
@@ -377,6 +377,7 @@ static void h2_srv_config_seti(h2_config *conf, h2_config_var_t var, int val)
break;
case H2_CONF_PROXY_REQUESTS:
H2_CONFIG_SET(conf, proxy_requests, val);
+ break;
case H2_CONF_WEBSOCKETS:
H2_CONFIG_SET(conf, h2_websockets, val);
break;