
trawick at apache
Nov 4, 2009, 4:55 PM
Post #1 of 1
(150 views)
Permalink
|
|
svn commit: r832942 - /httpd/mod_fcgid/trunk/modules/fcgid/fcgid_pm_unix.c
|
|
Author: trawick Date: Thu Nov 5 00:55:47 2009 New Revision: 832942 URL: http://svn.apache.org/viewvc?rev=832942&view=rev Log: log error code/description from sigaction(), hinted at by LLVM scan-build Modified: httpd/mod_fcgid/trunk/modules/fcgid/fcgid_pm_unix.c Modified: httpd/mod_fcgid/trunk/modules/fcgid/fcgid_pm_unix.c URL: http://svn.apache.org/viewvc/httpd/mod_fcgid/trunk/modules/fcgid/fcgid_pm_unix.c?rev=832942&r1=832941&r2=832942&view=diff ============================================================================== --- httpd/mod_fcgid/trunk/modules/fcgid/fcgid_pm_unix.c (original) +++ httpd/mod_fcgid/trunk/modules/fcgid/fcgid_pm_unix.c Thu Nov 5 00:55:47 2009 @@ -240,7 +240,7 @@ "mod_fcgid: Process manager %" APR_PID_T_FMT " started", getpid()); if ((rv = init_signal(main_server)) != APR_SUCCESS) { - ap_log_error(APLOG_MARK, APLOG_EMERG, 0, main_server, + ap_log_error(APLOG_MARK, APLOG_EMERG, rv, main_server, "mod_fcgid: can't install signal handler, exiting now"); exit(1); }
|