diff options
author | Manoj Kasichainula <manoj@apache.org> | 1999-08-17 22:59:29 +0200 |
---|---|---|
committer | Manoj Kasichainula <manoj@apache.org> | 1999-08-17 22:59:29 +0200 |
commit | 81838ad98e3c38df7d69830437448ac4715db600 (patch) | |
tree | 7d493817279119fe008aca410c68407778893723 /os | |
parent | More cleanup... (diff) | |
download | apache2-81838ad98e3c38df7d69830437448ac4715db600.tar.xz apache2-81838ad98e3c38df7d69830437448ac4715db600.zip |
merge the differences in apache-1.3 from tag mpm-merge-1 up to
APACHE_1_3_9 (a.k.a. mpm-merge-2) onto the mpm tree
prior to the merge, the mpm tree was tagged with apache-1_3-merge-2-pre,
and after the merge, the mpm tree will be tagged with
apache-1_3-merge-2-post
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@83709 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'os')
-rw-r--r-- | os/unix/unixd.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/os/unix/unixd.c b/os/unix/unixd.c index 09b2c43113..e9196dc387 100644 --- a/os/unix/unixd.c +++ b/os/unix/unixd.c @@ -198,7 +198,8 @@ int unixd_setup_child(void) if (setuid(unixd_config.user_id) == -1) { GETUSERMODE(); ap_log_error(APLOG_MARK, APLOG_ALERT, NULL, - "setuid: unable to change to uid: %d", unixd_config.user_id); + "setuid: unable to change to uid: %ld", + (long) unixd_config.user_id); exit(1); } GETUSERMODE(); @@ -211,7 +212,8 @@ int unixd_setup_child(void) #endif setuid(unixd_config.user_id) == -1)) { ap_log_error(APLOG_MARK, APLOG_ALERT, NULL, - "setuid: unable to change to uid: %d", unixd_config.user_id); + "setuid: unable to change to uid: %ld", + (long) unixd_config.user_id); return -1; } #endif |