From: Jim Jagielski Date: Wed, 30 Dec 2015 15:34:08 +0000 (+0000) Subject: command changes X-Git-Tag: 2.5.0-alpha~2473 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=407b9ab38ddcd26ca98cbf00fb1ac75b7691c5f5;p=thirdparty%2Fapache%2Fhttpd.git command changes git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1722358 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/proxy/mod_proxy_hcheck.c b/modules/proxy/mod_proxy_hcheck.c index 634577df780..9ccbf330b24 100644 --- a/modules/proxy/mod_proxy_hcheck.c +++ b/modules/proxy/mod_proxy_hcheck.c @@ -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 */ }