Changeset 2162
- Timestamp:
- 04/29/2008 08:59:18 PM (2 weeks ago)
- Files:
-
- branches/lighttpd-1.4.x/NEWS (modified) (1 diff)
- branches/lighttpd-1.4.x/src/mod_accesslog.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/lighttpd-1.4.x/NEWS
r2161 r2162 24 24 * Remove lighttpd.spec* from source, fixing all problems with it ;-) 25 25 * Do not rely on PATH_MAX (POSIX does not require it) (#580) 26 * Disable logging to access.log if filename is an empty string 26 27 27 28 - 1.4.19 - 2008-03-10 branches/lighttpd-1.4.x/src/mod_accesslog.c
r2149 r2162 474 474 } 475 475 476 if ( buffer_is_empty(s->access_logfile)) continue;476 if (s->access_logfile->used < 2) continue; 477 477 478 478 if (s->access_logfile->ptr[0] == '|') { … … 571 571 572 572 if (s->use_syslog == 0 && 573 !buffer_is_empty(s->access_logfile)&&573 s->access_logfile->used > 1 && 574 574 s->access_logfile->ptr[0] != '|') { 575 575 … … 648 648 mod_accesslog_patch_connection(srv, con, p); 649 649 650 /* No output device, nothing to do */ 651 if (!p->conf.use_syslog && p->conf.log_access_fd == -1) return HANDLER_GO_ON; 652 650 653 b = p->conf.access_logbuffer; 651 654 if (b->used == 0) {

