diff options
author | Rainer Jung <rjung@apache.org> | 2009-05-14 13:03:04 +0200 |
---|---|---|
committer | Rainer Jung <rjung@apache.org> | 2009-05-14 13:03:04 +0200 |
commit | 4172cbf0b3b822724a62a2cb1dc8820efb6a237b (patch) | |
tree | ac1b40806c01a5fb2ac6f4f10ae9eaa06d619ca7 /server/log.c | |
parent | Revert r735516 as requested by wrowe. (diff) | |
download | apache2-4172cbf0b3b822724a62a2cb1dc8820efb6a237b.tar.xz apache2-4172cbf0b3b822724a62a2cb1dc8820efb6a237b.zip |
Whitespace cleanup. No functional change.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@774728 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'server/log.c')
-rw-r--r-- | server/log.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/server/log.c b/server/log.c index dc48d1efd1..b604c6daa5 100644 --- a/server/log.c +++ b/server/log.c @@ -406,7 +406,7 @@ int ap_open_logs(apr_pool_t *pconf, apr_pool_t *p /* plog */, */ apr_pool_create(&stderr_p, apr_pool_parent_get(p)); apr_pool_tag(stderr_p, "stderr_pool"); - + if (open_error_log(s_main, 1, stderr_p) != OK) { return DONE; } @@ -414,7 +414,7 @@ int ap_open_logs(apr_pool_t *pconf, apr_pool_t *p /* plog */, replace_stderr = 1; if (s_main->error_log) { apr_status_t rv; - + /* Replace existing stderr with new log. */ apr_file_flush(s_main->error_log); rv = apr_file_dup2(stderr_log, s_main->error_log, stderr_p); @@ -1056,4 +1056,3 @@ AP_IMPLEMENT_HOOK_VOID(error_log, const request_rec *r, apr_pool_t *pool, const char *errstr), (file, line, level, status, s, r, pool, errstr)) - |