You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ji...@apache.org on 2015/12/30 16:34:08 UTC

svn commit: r1722358 - /httpd/httpd/trunk/modules/proxy/mod_proxy_hcheck.c

Author: jim
Date: Wed Dec 30 15:34:08 2015
New Revision: 1722358

URL: http://svn.apache.org/viewvc?rev=1722358&view=rev
Log:
command changes

Modified:
    httpd/httpd/trunk/modules/proxy/mod_proxy_hcheck.c

Modified: httpd/httpd/trunk/modules/proxy/mod_proxy_hcheck.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/proxy/mod_proxy_hcheck.c?rev=1722358&r1=1722357&r2=1722358&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/proxy/mod_proxy_hcheck.c (original)
+++ httpd/httpd/trunk/modules/proxy/mod_proxy_hcheck.c Wed Dec 30 15:34:08 2015
@@ -238,7 +238,7 @@ static const char *set_hc_template(cmd_p
         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_p
             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 */
     }