From: Martin Kraemer Date: Wed, 30 Jan 2002 15:30:09 +0000 (+0000) Subject: Minor tipos X-Git-Tag: 2.0.31~12 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0a372f9393b9f257949790e57b3910692fff0a97;p=apache Minor tipos git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@93111 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/proxy/mod_proxy.c b/modules/proxy/mod_proxy.c index 0e3acf3261..f797b04eaa 100644 --- a/modules/proxy/mod_proxy.c +++ b/modules/proxy/mod_proxy.c @@ -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} }; diff --git a/modules/proxy/mod_proxy.h b/modules/proxy/mod_proxy.h index c0061be3c7..fa6a8cff5e 100644 --- a/modules/proxy/mod_proxy.h +++ b/modules/proxy/mod_proxy.h @@ -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 diff --git a/modules/proxy/proxy_ftp.c b/modules/proxy/proxy_ftp.c index 7f3ff03e4f..3447f54220 100644 --- a/modules/proxy/proxy_ftp.c +++ b/modules/proxy/proxy_ftp.c @@ -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);