diff options
author | Jeff Trawick <trawick@apache.org> | 2012-08-06 14:15:03 +0200 |
---|---|---|
committer | Jeff Trawick <trawick@apache.org> | 2012-08-06 14:15:03 +0200 |
commit | b6f86b92c214c73bfcd9a863f1506f523adce2cc (patch) | |
tree | 605a9c18e455c54e0443aa314a1f9b2f0ad317c2 /server/mpm_common.c | |
parent | fix "lua_vmprep.c:29:6: warning: no previous prototype for ‘ap_lua_init_mut... (diff) | |
download | apache2-b6f86b92c214c73bfcd9a863f1506f523adce2cc.tar.xz apache2-b6f86b92c214c73bfcd9a863f1506f523adce2cc.zip |
The Pidfile directive and ap_log_pid()/ap_remove_pid()/ap_read_pid()
now respect DefaultRuntimeDir
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1369808 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-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 4448ec60dc..e33bd11c9e 100644 --- a/server/mpm_common.c +++ b/server/mpm_common.c @@ -307,7 +307,7 @@ const char *ap_mpm_set_pidfile(cmd_parms *cmd, void *dummy, void ap_mpm_dump_pidfile(apr_pool_t *p, apr_file_t *out) { apr_file_printf(out, "PidFile: \"%s\"\n", - ap_server_root_relative(p, ap_pid_fname)); + ap_runtime_dir_relative(p, ap_pid_fname)); } const char *ap_mpm_set_max_requests(cmd_parms *cmd, void *dummy, |