]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Fix compile break. It should be apr_pstrcat.
authorBill Stoddard <stoddard@apache.org>
Mon, 25 Sep 2000 16:42:49 +0000 (16:42 +0000)
committerBill Stoddard <stoddard@apache.org>
Mon, 25 Sep 2000 16:42:49 +0000 (16:42 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86317 13f79535-47bb-0310-9956-ffa450edef68

modules/http/http_core.c

index 0de2857d3f41dc346d0ed3be216ec0cc76ffbd9b..14745d1dd131015b3545f2a27890d06de99ef359 100644 (file)
@@ -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);
     }