Ticket #269: ngx_again.patch

File ngx_again.patch, 407 bytes (added by Bryan Berg, 14 years ago)

ngx_again.patch

  • src/http/modules/ngx_http_dav_module.c

    old new ngx_http_dav_handler(ngx_http_request_t  
    171171
    172172        rc = ngx_http_read_client_request_body(r, ngx_http_dav_put_handler);
    173173
    174         if (rc >= NGX_HTTP_SPECIAL_RESPONSE) {
     174        if (rc >= NGX_HTTP_SPECIAL_RESPONSE || rc == NGX_AGAIN) {
    175175            return rc;
    176176        }
    177177