summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBill Stoddard <stoddard@apache.org>2000-09-25 16:42:49 +0000
committerBill Stoddard <stoddard@apache.org>2000-09-25 16:42:49 +0000
commit3a1e7ab1cbfcf12c9df752e364bb18d0ae9ea02c (patch)
tree3aef5651f3ac0df0bbde3169b5e54edd0fd3d91a
parentf2b58b330f368b47267a98ebd9d3b5e8385affc1 (diff)
downloadhttpd-3a1e7ab1cbfcf12c9df752e364bb18d0ae9ea02c.tar.gz
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
-rw-r--r--modules/http/http_core.c2
1 files changed, 1 insertions, 1 deletions
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);
}