Commit 53ce1de6 authored by William A. Rowe Jr's avatar William A. Rowe Jr
Browse files

  Missed one, all should have recovered from APR_INHERIT now.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89602 13f79535-47bb-0310-9956-ffa450edef68
parent 8b78265f
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -266,7 +266,7 @@ static void open_error_log(server_rec *s, apr_pool_t *p)
    else {
	fname = ap_server_root_relative(p, s->error_fname);
        rc = apr_file_open(&s->error_log, fname, 
                      APR_APPEND | APR_READ | APR_WRITE | APR_CREATE | APR_INHERIT,
                      APR_APPEND | APR_READ | APR_WRITE | APR_CREATE,
                      APR_OS_DEFAULT, p);
        if (rc != APR_SUCCESS) {
            ap_log_error(APLOG_MARK, APLOG_STARTUP, rc, NULL, 
@@ -274,6 +274,7 @@ static void open_error_log(server_rec *s, apr_pool_t *p)
		         ap_server_argv0, fname);
            exit(1);
	}
        apr_file_set_inherit(s->error_log);
    }
}