Return-Path: Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: (qmail 55608 invoked from network); 25 Aug 2004 09:19:46 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 25 Aug 2004 09:19:46 -0000 Received: (qmail 75782 invoked by uid 500); 25 Aug 2004 09:19:45 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 75705 invoked by uid 500); 25 Aug 2004 09:19:45 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 75678 invoked by uid 500); 25 Aug 2004 09:19:44 -0000 Delivered-To: apmail-httpd-2.0-cvs@apache.org Received: (qmail 75675 invoked by uid 99); 25 Aug 2004 09:19:44 -0000 X-ASF-Spam-Status: No, hits=-2.8 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.27.1) with SMTP; Wed, 25 Aug 2004 02:19:44 -0700 Received: (qmail 55293 invoked by uid 1526); 25 Aug 2004 09:19:44 -0000 Date: 25 Aug 2004 09:19:44 -0000 Message-ID: <20040825091944.55292.qmail@minotaur.apache.org> From: mturk@apache.org To: httpd-2.0-cvs@apache.org Subject: cvs commit: httpd-2.0/modules/proxy mod_proxy.c X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N mturk 2004/08/25 02:19:44 Modified: modules/proxy mod_proxy.c Log: Untabify the code. Have no idea who put all those tabs in sources. Revision Changes Path 1.135 +13 -13 httpd-2.0/modules/proxy/mod_proxy.c Index: mod_proxy.c =================================================================== RCS file: /home/cvs/httpd-2.0/modules/proxy/mod_proxy.c,v retrieving revision 1.134 retrieving revision 1.135 diff -u -r1.134 -r1.135 --- mod_proxy.c 25 Aug 2004 09:13:09 -0000 1.134 +++ mod_proxy.c 25 Aug 2004 09:19:43 -0000 1.135 @@ -1065,17 +1065,17 @@ if (ap_proxy_is_ipaddr(New, parms->pool)) { #if DEBUGGING - ap_log_error(APLOG_MARK, APLOG_STARTUP, 0, NULL, - "Parsed addr %s", inet_ntoa(New->addr)); - ap_log_error(APLOG_MARK, APLOG_STARTUP, 0, NULL, - "Parsed mask %s", inet_ntoa(New->mask)); + ap_log_error(APLOG_MARK, APLOG_STARTUP, 0, NULL, + "Parsed addr %s", inet_ntoa(New->addr)); + ap_log_error(APLOG_MARK, APLOG_STARTUP, 0, NULL, + "Parsed mask %s", inet_ntoa(New->mask)); #endif } else if (ap_proxy_is_domainname(New, parms->pool)) { - ap_str_tolower(New->name); + ap_str_tolower(New->name); #if DEBUGGING - ap_log_error(APLOG_MARK, APLOG_STARTUP, 0, NULL, - "Parsed domain %s", New->name); + ap_log_error(APLOG_MARK, APLOG_STARTUP, 0, NULL, + "Parsed domain %s", New->name); #endif } else if (ap_proxy_is_hostname(New, parms->pool)) { @@ -1407,7 +1407,7 @@ static void ap_add_per_proxy_conf(server_rec *s, ap_conf_vector_t *dir_config) { proxy_server_conf *sconf = ap_get_module_config(s->module_config, - &proxy_module); + &proxy_module); void **new_space = (void **)apr_array_push(sconf->sec_proxy); *new_space = dir_config; @@ -1721,9 +1721,9 @@ STANDARD20_MODULE_STUFF, create_proxy_dir_config, /* create per-directory config structure */ merge_proxy_dir_config, /* merge per-directory config structures */ - create_proxy_config, /* create per-server config structure */ - merge_proxy_config, /* merge per-server config structures */ - proxy_cmds, /* command table */ + create_proxy_config, /* create per-server config structure */ + merge_proxy_config, /* merge per-server config structures */ + proxy_cmds, /* command table */ register_hooks }; @@ -1757,5 +1757,5 @@ proxy_server_conf *conf),(worker, balancer,r,conf),DECLINED) APR_IMPLEMENT_OPTIONAL_HOOK_RUN_ALL(proxy, PROXY, int, fixups, - (request_rec *r), (r), - OK, DECLINED) + (request_rec *r), (r), + OK, DECLINED)