From: Jeff Trawick Date: Mon, 5 Jun 2000 20:51:11 +0000 (+0000) Subject: Make the string in a log message unique so we know X-Git-Tag: APACHE_2_0_ALPHA_5~440 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=04974955dc5c7e5c9e7b00da223aaa95a7dd7791;p=apache Make the string in a log message unique so we know 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 --- diff --git a/modules/generators/mod_cgi.c b/modules/generators/mod_cgi.c index 6dd6a52cf9..7b4975b7c5 100644 --- a/modules/generators/mod_cgi.c +++ b/modules/generators/mod_cgi.c @@ -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);