]> granicus.if.org Git - apache/commitdiff
Minor tipos
authorMartin Kraemer <martin@apache.org>
Wed, 30 Jan 2002 15:30:09 +0000 (15:30 +0000)
committerMartin Kraemer <martin@apache.org>
Wed, 30 Jan 2002 15:30:09 +0000 (15:30 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@93111 13f79535-47bb-0310-9956-ffa450edef68

modules/proxy/mod_proxy.c
modules/proxy/mod_proxy.h
modules/proxy/proxy_ftp.c

index 0e3acf3261c91ceb9ae42b350a458434dce43ce6..f797b04eaaa94a2ab5f7b9f6febd4a216f6d59cf 100644 (file)
@@ -965,9 +965,9 @@ static const command_rec proxy_cmds[] =
     AP_INIT_TAKE1("ProxyVia", set_via_opt, NULL, RSRC_CONF,
      "Configure Via: proxy header header to one of: on | off | block | full"),
     AP_INIT_FLAG("ProxyErrorOverride", set_proxy_error_override, NULL, RSRC_CONF,
-     "use our error handling pages instead of the servers we are proxying"),
+     "use our error handling pages instead of the servers' we are proxying"),
     AP_INIT_FLAG("ProxyPreserveHost", set_preserve_host, NULL, RSRC_CONF,
-     "on if we shoud preserve host header while proxying"),
+     "on if we should preserve host header while proxying"),
  
     {NULL}
 };
index c0061be3c7ad0077bb6c5d63927d2fd52a602655..fa6a8cff5e53157d94a5da434695e02533d2a89e 100644 (file)
@@ -178,7 +178,7 @@ typedef struct {
     long maxfwd;
     char maxfwd_set;
     /** 
-     * the following setting masks the error  page
+     * the following setting masks the error page
      * returned from the 'proxied server' and just 
      * forwards the status code upwards.
      * This allows the main server (us) to generate
index 7f3ff03e4f7c1dfbcc84d1bc5c4e0a9c93a4b25c..3447f54220a2c2ddaa76a66c5dcf68250aed2183 100644 (file)
@@ -442,7 +442,7 @@ apr_status_t ap_proxy_send_dir_filter(ap_filter_t *f, apr_bucket_brigade *in)
                 len = max;
             }
 
-            /* len+1 to leave spave for the trailing nil char */
+            /* len+1 to leave space for the trailing nil char */
             apr_cpystrn(ctx->buffer+strlen(ctx->buffer), response, len+1);
 
             APR_BUCKET_REMOVE(e);