diff options
author | William A. Rowe Jr <wrowe@apache.org> | 2002-06-09 05:44:03 +0200 |
---|---|---|
committer | William A. Rowe Jr <wrowe@apache.org> | 2002-06-09 05:44:03 +0200 |
commit | 178e10e3da84503df1218016d13e400f11f35670 (patch) | |
tree | 9b1f7776dd92b537443c616753012c3ceed74144 /server/mpm_common.c | |
parent | Rearrange the main doc index a little. In particular: (diff) | |
download | apache2-178e10e3da84503df1218016d13e400f11f35670.tar.xz apache2-178e10e3da84503df1218016d13e400f11f35670.zip |
Well the wrappers work out well... nice to be able to put off committing
these API changes until the evening ;)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95587 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'server/mpm_common.c')
-rw-r--r-- | server/mpm_common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/mpm_common.c b/server/mpm_common.c index bfe7c755d3..98f482dd63 100644 --- a/server/mpm_common.c +++ b/server/mpm_common.c @@ -244,7 +244,7 @@ void ap_wait_or_timeout(apr_exit_why_e *status, int *exitcode, apr_proc_t *ret, int ap_process_child_status(apr_proc_t *pid, apr_exit_why_e why, int status) { int signum = status; - const char *sigdesc = apr_signal_get_description(signum); + const char *sigdesc = apr_signal_description_get(signum); /* Child died... if it died due to a fatal error, * we should simply bail out. The caller needs to |