From: Joe Orton Date: Tue, 10 Nov 2020 08:37:45 +0000 (+0000) Subject: * modules/proxy/mod_proxy_wstunnel.c (proxyws_set_aysnch_delay): X-Git-Tag: 2.5.0-alpha2-ci-test-only~1152 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=24466f95bb4be218d2289fc6ce3893167b28d0f7;p=thirdparty%2Fapache%2Fhttpd.git * modules/proxy/mod_proxy_wstunnel.c (proxyws_set_aysnch_delay): Fix typo in function name, no functional change. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1883245 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/proxy/mod_proxy_wstunnel.c b/modules/proxy/mod_proxy_wstunnel.c index 0c082fe6d88..bc9ffe73ca1 100644 --- a/modules/proxy/mod_proxy_wstunnel.c +++ b/modules/proxy/mod_proxy_wstunnel.c @@ -423,7 +423,7 @@ static const char * proxyws_set_idle(cmd_parms *cmd, void *conf, const char *val return NULL; } -static const char * proxyws_set_aysnch_delay(cmd_parms *cmd, void *conf, const char *val) +static const char * proxyws_set_asynch_delay(cmd_parms *cmd, void *conf, const char *val) { proxyws_dir_conf *dconf = conf; if (ap_timeout_parameter_parse(val, &(dconf->async_delay), "s") != APR_SUCCESS) @@ -437,7 +437,7 @@ static const command_rec ws_proxy_cmds[] = RSRC_CONF|ACCESS_CONF, "timeout for activity in either direction, unlimited by default"), - AP_INIT_TAKE1("ProxyWebsocketAsyncDelay", proxyws_set_aysnch_delay, NULL, + AP_INIT_TAKE1("ProxyWebsocketAsyncDelay", proxyws_set_asynch_delay, NULL, RSRC_CONF|ACCESS_CONF, "amount of time to poll before going asynchronous"), {NULL}