Changeset 1899
- Timestamp:
- 08/13/2007 11:15:22 AM (13 months ago)
- Location:
- branches/lighttpd-1.4.x/src
- Files:
-
- 2 modified
-
connections.c (modified) (1 diff)
-
mod_staticfile.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/lighttpd-1.4.x/src/connections.c
r1873 r1899 1446 1446 /* error-handler is back and has generated content */ 1447 1447 /* if Status: was set, take it otherwise use 200 */ 1448 con->http_status = con->error_handler_saved_status; 1448 if (con->http_status == 0) { 1449 con->http_status = con->error_handler_saved_status; 1450 } 1449 1451 } 1450 1452 -
branches/lighttpd-1.4.x/src/mod_staticfile.c
r1881 r1899 507 507 http_chunk_append_file(srv, con, con->physical.path, 0, sce->st.st_size); 508 508 509 con->http_status = 200; 509 510 con->file_finished = 1; 510 511

