Return-Path: Delivered-To: apmail-apache-cvs-archive@apache.org Received: (qmail 95285 invoked by uid 500); 10 Aug 2000 12:47:22 -0000 Mailing-List: contact apache-cvs-help@apache.org; run by ezmlm Precedence: bulk X-No-Archive: yes Reply-To: new-httpd@apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list apache-cvs@apache.org Received: (qmail 95128 invoked by uid 500); 10 Aug 2000 12:47:13 -0000 Delivered-To: apmail-apache-2.0-cvs@apache.org Date: 10 Aug 2000 12:46:58 -0000 Message-ID: <20000810124658.95099.qmail@locus.apache.org> From: trawick@locus.apache.org To: apache-2.0-cvs@apache.org Subject: cvs commit: apache-2.0/src/main http_protocol.c trawick 00/08/10 05:46:57 Modified: src/main http_protocol.c Log: Change use of ap_pstrcat() to apr_pstrcat() in previous commit so that Apache builds again. Revision Changes Path 1.103 +1 -1 apache-2.0/src/main/http_protocol.c Index: http_protocol.c =================================================================== RCS file: /home/cvs/apache-2.0/src/main/http_protocol.c,v retrieving revision 1.102 retrieving revision 1.103 diff -u -r1.102 -r1.103 --- http_protocol.c 2000/08/10 11:22:56 1.102 +++ http_protocol.c 2000/08/10 12:46:52 1.103 @@ -1599,7 +1599,7 @@ * Append all of the elements of r->allowed_xmethods */ for (i = 0; i < r->allowed_xmethods->nelts; ++i) { - list = ap_pstrcat(r->pool, list, ", ", xmethod[i], NULL); + list = apr_pstrcat(r->pool, list, ", ", xmethod[i], NULL); } } /*