Return-Path: Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: (qmail 96688 invoked from network); 11 Mar 2004 19:46:37 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (208.185.179.12) by minotaur-2.apache.org with SMTP; 11 Mar 2004 19:46:37 -0000 Received: (qmail 78545 invoked by uid 500); 11 Mar 2004 19:46:27 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 78363 invoked by uid 500); 11 Mar 2004 19:46:26 -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 78350 invoked by uid 500); 11 Mar 2004 19:46:26 -0000 Delivered-To: apmail-httpd-2.0-cvs@apache.org Received: (qmail 78346 invoked from network); 11 Mar 2004 19:46:26 -0000 Received: from unknown (HELO minotaur.apache.org) (209.237.227.194) by daedalus.apache.org with SMTP; 11 Mar 2004 19:46:26 -0000 Received: (qmail 96651 invoked by uid 1582); 11 Mar 2004 19:46:35 -0000 Date: 11 Mar 2004 19:46:35 -0000 Message-ID: <20040311194635.96650.qmail@minotaur.apache.org> From: jorton@apache.org To: httpd-2.0-cvs@apache.org Subject: cvs commit: httpd-2.0/server vhost.c X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N jorton 2004/03/11 11:46:35 Modified: server vhost.c Log: * server/vhost.c: Fix comments which got search'n'replaced. Revision Changes Path 1.85 +6 -6 httpd-2.0/server/vhost.c Index: vhost.c =================================================================== RCS file: /home/cvs/httpd-2.0/server/vhost.c,v retrieving revision 1.84 retrieving revision 1.85 diff -w -d -u -r1.84 -r1.85 --- vhost.c 9 Feb 2004 20:40:49 -0000 1.84 +++ vhost.c 11 Mar 2004 19:46:35 -0000 1.85 @@ -68,7 +68,7 @@ * sharing this address */ }; -/* This defines the size of the hash apr_table_t used for hashing ip addresses +/* This defines the size of the hash table used for hashing ip addresses * of virtual hosts. It must be a power of two. */ #ifndef IPHASH_TABLE_SIZE @@ -248,7 +248,7 @@ } -/* hash apr_table_t statistics, keep this in here for the beta period so +/* hash table statistics, keep this in here for the beta period so * we can find out if the hash function is ok */ #ifdef IPHASH_STATISTICS @@ -361,7 +361,7 @@ unsigned bucket; ipaddr_chain *trav; - /* scan the hash apr_table_t for an exact match first */ + /* scan the hash table for an exact match first */ bucket = hash_addr(sa); for (trav = iphash_table[bucket]; trav; trav = trav->next) { server_addr_rec *sar = trav->sar; @@ -536,7 +536,7 @@ iphash_table_tail[i] = &iphash_table[i]; } - /* The first things to go into the hash apr_table_t are the NameVirtualHosts + /* The first things to go into the hash table are the NameVirtualHosts * Since name_vhost_list is in the same order that the directives * occured in the config file, we'll copy it in that order. */ @@ -563,7 +563,7 @@ */ } - /* The next things to go into the hash apr_table_t are the virtual hosts + /* The next things to go into the hash table are the virtual hosts * themselves. They're listed off of main_s->next in the reverse * order they occured in the config file, so we insert them at * the iphash_table_tail but don't advance the tail. @@ -988,7 +988,7 @@ ipaddr_chain *trav; apr_port_t port; - /* scan the hash apr_table_t for an exact match first */ + /* scan the hash table for an exact match first */ trav = find_ipaddr(conn->local_addr); if (trav) {