From: Jeff Trawick Date: Thu, 10 Aug 2000 12:46:52 +0000 (+0000) Subject: Change use of ap_pstrcat() to apr_pstrcat() in previous commit so X-Git-Tag: APACHE_2_0_ALPHA_6~54 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=df5ed41b512faf9fb019e9de9bbed4f7b23b2848;p=apache Change use of ap_pstrcat() to apr_pstrcat() in previous commit so that Apache builds again. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86044 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/http/http_protocol.c b/modules/http/http_protocol.c index 8a687aa0b7..40bfb9d118 100644 --- a/modules/http/http_protocol.c +++ b/modules/http/http_protocol.c @@ -1599,7 +1599,7 @@ static char *make_allow(request_rec *r) * 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); } } /*