From df5ed41b512faf9fb019e9de9bbed4f7b23b2848 Mon Sep 17 00:00:00 2001 From: Jeff Trawick Date: Thu, 10 Aug 2000 12:46:52 +0000 Subject: [PATCH] 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 --- modules/http/http_protocol.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } } /* -- 2.40.0