]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
command changes
authorJim Jagielski <jim@apache.org>
Wed, 30 Dec 2015 15:34:08 +0000 (15:34 +0000)
committerJim Jagielski <jim@apache.org>
Wed, 30 Dec 2015 15:34:08 +0000 (15:34 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1722358 13f79535-47bb-0310-9956-ffa450edef68

modules/proxy/mod_proxy_hcheck.c

index 634577df78015ad80e619773e9c7fcc0274a07d0..9ccbf330b2486dbbf72a31646692852c15c480b8 100644 (file)
@@ -238,7 +238,7 @@ static const char *set_hc_template(cmd_parms *cmd, void *dummy, const char *arg)
         word = ap_getword_conf(cmd->pool, &arg);
         val = strchr(word, '=');
         if (!val) {
-            return "Invalid HCheckTemplate parameter. Parameter must be "
+            return "Invalid ProxyHCTemplate parameter. Parameter must be "
                    "in the form 'key=value'";
         }
         else
@@ -249,7 +249,7 @@ static const char *set_hc_template(cmd_parms *cmd, void *dummy, const char *arg)
             void *v;
             /* get rid of recently pushed (bad) template */
             v = apr_array_pop(ctx->templates);
-            return apr_pstrcat(cmd->temp_pool, "HCheckTemplate: ", err, " ", word, "=", val, "; ", name, NULL);
+            return apr_pstrcat(cmd->temp_pool, "ProxyHCTemplate: ", err, " ", word, "=", val, "; ", name, NULL);
         }
         /* No error means we have a valid template */
     }