]> granicus.if.org Git - apache/commitdiff
Make the string in a log message unique so we know
authorJeff Trawick <trawick@apache.org>
Mon, 5 Jun 2000 20:51:11 +0000 (20:51 +0000)
committerJeff Trawick <trawick@apache.org>
Mon, 5 Jun 2000 20:51:11 +0000 (20:51 +0000)
what failed.  Before, "couldn't create child process: " was
used for a couple of different logs.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85428 13f79535-47bb-0310-9956-ffa450edef68

modules/generators/mod_cgi.c

index 6dd6a52cf9d00d4efc77478b54fbb1edd6117ef6..7b4975b7c5f008e65bd06af3b012da09a751cdec 100644 (file)
@@ -344,7 +344,7 @@ static ap_status_t run_cgi_child(BUFF **script_out, BUFF **script_in, BUFF **scr
         ((rc = ap_setprocattr_cmdtype(procattr, APR_PROGRAM)) != APR_SUCCESS)) {
         /* Something bad happened, tell the world. */
        ap_log_rerror(APLOG_MARK, APLOG_ERR, rc, r,
-                     "couldn't create child process: %s", r->filename);
+                     "couldn't set child process attributes: %s", r->filename);
     }
     else {
         rc = ap_create_process(&procnew, command, argv, env, procattr, p);