]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
* modules/proxy/mod_proxy_wstunnel.c (proxyws_set_aysnch_delay):
authorJoe Orton <jorton@apache.org>
Tue, 10 Nov 2020 08:37:45 +0000 (08:37 +0000)
committerJoe Orton <jorton@apache.org>
Tue, 10 Nov 2020 08:37:45 +0000 (08:37 +0000)
  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

modules/proxy/mod_proxy_wstunnel.c

index 0c082fe6d886b9e39532e854256d40ef19f91c40..bc9ffe73ca1edd32177a95aec0017f6b81480acb 100644 (file)
@@ -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}