Merge of r4652: ssl without buffer should not set c->buffered.

Removed mistaken setting of NGX_SSL_BUFFERED flag in ngx_ssl_send_chain()
if SSL buffer is not used.
This commit is contained in:
Maxim Dounin 2012-07-02 15:51:02 +00:00
parent a9cc91bacf
commit d1c053b9b8
1 changed files with 0 additions and 1 deletions

View File

@ -990,7 +990,6 @@ ngx_ssl_send_chain(ngx_connection_t *c, ngx_chain_t *in, off_t limit)
}
if (n == NGX_AGAIN) {
c->buffered |= NGX_SSL_BUFFERED;
return in;
}