Show "no uri specified -> 400" error only when "debug.log-request-header-on-error" is enabled (fixes #2030)
git-svn-id: svn://svn.lighttpd.net/lighttpd/branches/lighttpd-1.4.x@2583 152afb58-edef-0310-8abb-c4023f1b3aa9
This commit is contained in:
parent
839aa7dbd9
commit
1b2cc3bb66
1
NEWS
1
NEWS
|
@ -18,6 +18,7 @@ NEWS
|
|||
* cmake: Add -export-dynamic to link flags, fixes build on FreeBSD
|
||||
* Set FD_CLOEXEC for bound sockets before pipe-logger forks (fixes #2026)
|
||||
* Reset ignored signals to SIG_DFL before exec() in fastcgi/scgi (fixes #2029)
|
||||
* Show "no uri specified -> 400" error only when "debug.log-request-header-on-error" is enabled (fixes #2030)
|
||||
|
||||
- 1.4.23 - 2009-06-19
|
||||
* Added some extra warning options in cmake and fix the resulting warnings (unused/static functions)
|
||||
|
|
|
@ -540,8 +540,8 @@ int http_request_parse(server *srv, connection *con) {
|
|||
con->response.keep_alive = 0;
|
||||
con->keep_alive = 0;
|
||||
|
||||
log_error_write(srv, __FILE__, __LINE__, "s", "no uri specified -> 400");
|
||||
if (srv->srvconf.log_request_header_on_error) {
|
||||
log_error_write(srv, __FILE__, __LINE__, "s", "no uri specified -> 400");
|
||||
log_error_write(srv, __FILE__, __LINE__, "Sb",
|
||||
"request-header:\n",
|
||||
con->request.request);
|
||||
|
|
Loading…
Reference in New Issue