Index: server/log.c =================================================================== RCS file: /home/cvspublic/httpd-2.0/server/log.c,v retrieving revision 1.131 diff -u -r1.131 log.c --- server/log.c 20 Mar 2003 21:50:40 -0000 1.131 +++ server/log.c 21 Mar 2003 15:08:39 -0000 @@ -200,7 +200,7 @@ return APR_EBADPATH; } if ((rc = apr_file_open(&stderr_file, filename, - APR_APPEND | APR_READ | APR_WRITE | APR_CREATE, + APR_APPEND | APR_WRITE | APR_CREATE, APR_OS_DEFAULT, p)) != APR_SUCCESS) { ap_log_error(APLOG_MARK, APLOG_STARTUP, rc, NULL, "%s: could not open error log file %s.", @@ -313,7 +313,7 @@ return DONE; } if ((rc = apr_file_open(&s->error_log, fname, - APR_APPEND | APR_READ | APR_WRITE | APR_CREATE, + APR_APPEND | APR_WRITE | APR_CREATE, APR_OS_DEFAULT, p)) != APR_SUCCESS) { ap_log_error(APLOG_MARK, APLOG_STARTUP, rc, NULL, "%s: could not open error log file %s.",
I don't think so. And there is another error-log-open path that should
be fixed too.
- need to read error_logs from httpd ? Bjoern A. Zeeb
- Re: need to read error_logs from httpd ? Jeff Trawick
- Re: need to read error_logs from httpd ? Jeff Trawick