From: Justin Erenkrantz Date: Tue, 24 Aug 2004 08:55:45 +0000 (+0000) Subject: Clean up some bogus error messages. X-Git-Tag: STRIKER_2_1_0_RC1~49 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a32e605179c2b786e854185707c4a5d22c7dd0be;p=thirdparty%2Fapache%2Fhttpd.git Clean up some bogus error messages. (I'll note that the code style in this file borders on unreadable.) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@104784 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/proxy/mod_proxy.c b/modules/proxy/mod_proxy.c index bac52dd4074..7742eb9f190 100644 --- a/modules/proxy/mod_proxy.c +++ b/modules/proxy/mod_proxy.c @@ -874,7 +874,8 @@ static const char * char *val = strchr(word, '='); if (!val) { if (cmd->path) - return "Invalid ProxyPass parameter. Paramet must be in the form 'key=value'"; + return "Invalid ProxyPass parameter. Parameter must be " + "in the form 'key=value'"; else return "ProxyPass can not have a path when defined in a location"; } @@ -1290,7 +1291,8 @@ static const char *add_member(cmd_parms *cmd, void *dummy, const char *arg) if (cmd->path) return "BalancerMember can not have a balancer name when defined in a location"; else - return "Invalid BalancerMember parameter. Paramet must be in the form 'key=value'"; + return "Invalid BalancerMember parameter. Parameter must " + "be in the form 'key=value'"; else *val++ = '\0'; apr_table_setn(params, word, val);