From 3a1e7ab1cbfcf12c9df752e364bb18d0ae9ea02c Mon Sep 17 00:00:00 2001 From: Bill Stoddard Date: Mon, 25 Sep 2000 16:42:49 +0000 Subject: [PATCH] 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 --- modules/http/http_core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/http/http_core.c b/modules/http/http_core.c index 0de2857d3f..14745d1dd1 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); } -- 2.50.1