diff options
author | Doug MacEachern <dougm@apache.org> | 2000-08-02 07:27:38 +0200 |
---|---|---|
committer | Doug MacEachern <dougm@apache.org> | 2000-08-02 07:27:38 +0200 |
commit | 059d8dd2122f0a3948c2c09549159f0931a6f236 (patch) | |
tree | 8a2937938ed4eec31f918c6c8401ce07012cd37a /os/beos | |
parent | Use the AP_INIT_TAKE23() macro to clean up a maintainer-mode warning, (diff) | |
download | apache2-059d8dd2122f0a3948c2c09549159f0931a6f236.tar.xz apache2-059d8dd2122f0a3948c2c09549159f0931a6f236.zip |
prefix libapr functions and types with apr_
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85976 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'os/beos')
-rw-r--r-- | os/beos/beosd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/os/beos/beosd.c b/os/beos/beosd.c index 5cadf5a247..e86314b82e 100644 --- a/os/beos/beosd.c +++ b/os/beos/beosd.c @@ -85,7 +85,7 @@ void beosd_detach(void) char buf[120]; ap_log_error(APLOG_MARK, APLOG_STARTUP | APLOG_NOERRNO, 0, NULL, "%s: unable to replace stdin with /dev/null: %s", - ap_server_argv0, ap_strerror(errno, buf, sizeof(buf))); + ap_server_argv0, apr_strerror(errno, buf, sizeof(buf))); /* continue anyhow -- note we can't close out descriptor 0 because we * have nothing to replace it with, and if we didn't have a descriptor * 0 the next file would be created with that value ... leading to @@ -96,7 +96,7 @@ void beosd_detach(void) char buf[120]; ap_log_error(APLOG_MARK, APLOG_STARTUP | APLOG_NOERRNO, 0, NULL, "%s: unable to replace stdout with /dev/null: %s", - ap_server_argv0, ap_strerror(errno, buf, sizeof(buf))); + ap_server_argv0, apr_strerror(errno, buf, sizeof(buf))); } /* stderr is a tricky one, we really want it to be the error_log, * but we haven't opened that yet. So leave it alone for now and it'll |