]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Clean up some bogus error messages.
authorJustin Erenkrantz <jerenkrantz@apache.org>
Tue, 24 Aug 2004 08:55:45 +0000 (08:55 +0000)
committerJustin Erenkrantz <jerenkrantz@apache.org>
Tue, 24 Aug 2004 08:55:45 +0000 (08:55 +0000)
(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

modules/proxy/mod_proxy.c

index bac52dd4074630fb6cd373019d096077a30ec732..7742eb9f190e64b19586efccd8d5b08227d48115 100644 (file)
@@ -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);