From: Bill Stoddard Date: Mon, 25 Sep 2000 16:42:49 +0000 (+0000) Subject: Fix compile break. It should be apr_pstrcat. X-Git-Tag: APACHE_2_0_ALPHA_7~105 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3a1e7ab1cbfcf12c9df752e364bb18d0ae9ea02c;p=thirdparty%2Fapache%2Fhttpd.git Fix compile break. It should be apr_pstrcat. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86317 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/http/http_core.c b/modules/http/http_core.c index 0de2857d3f4..14745d1dd13 100644 --- a/modules/http/http_core.c +++ b/modules/http/http_core.c @@ -2469,7 +2469,7 @@ static const char *set_interpreter_source(cmd_parms *cmd, core_dir_config *d, } else if (!strcasecmp(arg, "script")) { d->script_interpreter_source = INTERPRETER_SOURCE_SHEBANG; } else { - return ap_pstrcat(cmd->temp_pool, "ScriptInterpreterSource \"", arg, + return apr_pstrcat(cmd->temp_pool, "ScriptInterpreterSource \"", arg, "\" must be \"registry\", \"registry-strict\" or " "\"script\"", NULL); }