fixed the 501 code for a LOCK request
git-svn-id: svn://svn.lighttpd.net/lighttpd/branches/lighttpd-1.4.11-ssl-fixes@1345 152afb58-edef-0310-8abb-c4023f1b3aa9
This commit is contained in:
parent
0014a87d02
commit
a59faafd7d
|
@ -385,6 +385,8 @@ static int connection_handle_write_prepare(server *srv, connection *con) {
|
|||
case HTTP_METHOD_MOVE:
|
||||
case HTTP_METHOD_PROPFIND:
|
||||
case HTTP_METHOD_PROPPATCH:
|
||||
case HTTP_METHOD_LOCK:
|
||||
case HTTP_METHOD_UNLOCK:
|
||||
break;
|
||||
case HTTP_METHOD_OPTIONS:
|
||||
/*
|
||||
|
@ -427,6 +429,7 @@ static int connection_handle_write_prepare(server *srv, connection *con) {
|
|||
case 403:
|
||||
case 404:
|
||||
case 408:
|
||||
case 409:
|
||||
case 411:
|
||||
case 416:
|
||||
case 423:
|
||||
|
|
Loading…
Reference in New Issue