added better debug

git-svn-id: svn://svn.lighttpd.net/lighttpd/branches/lighttpd-merge-1.4.x@828 152afb58-edef-0310-8abb-c4023f1b3aa9
svn/tags/lighttpd-1.4.8
Jan Kneschke 2005-11-10 12:13:48 +00:00
parent 319326b5af
commit b71b54fc5b
1 changed files with 2 additions and 3 deletions

View File

@ -247,7 +247,6 @@ int http_response_handle_cachable(server *srv, connection *con, buffer *mtime) {
/* check if etag + last-modified */
if (con->request.http_if_modified_since) {
size_t used_len;
char *semicolon;
@ -282,9 +281,9 @@ int http_response_handle_cachable(server *srv, connection *con, buffer *mtime) {
return HANDLER_FINISHED;
}
} else {
log_error_write(srv, __FILE__, __LINE__, "ss",
log_error_write(srv, __FILE__, __LINE__, "ssdd",
"DEBUG: Last-Modified check failed as the received timestamp was too long:",
con->request.http_if_modified_since);
con->request.http_if_modified_since, used_len, sizeof(buf) - 1);
con->http_status = 412;
return HANDLER_FINISHED;