comparison src/event/ngx_event_openssl.c @ 513:fbbf16224844 release-0.1.31

nginx-0.1.31-RELEASE import *) Bugfix: the response encrypted by SSL may not transferred complete. *) Bugfix: errors while processing FastCGI response by SSI. *) Bugfix: errors while using SSI and gzipping. *) Bugfix: the redirect with the 301 code was transferred without response body; the bug had appeared in 0.1.30.
author Igor Sysoev <igor@sysoev.ru>
date Mon, 16 May 2005 13:53:20 +0000
parents c12967aadd87
children 371c1cee100d
comparison
equal deleted inserted replaced
512:3be320f17dbb 513:fbbf16224844
286 286
287 if (n == NGX_ERROR) { 287 if (n == NGX_ERROR) {
288 return NGX_CHAIN_ERROR; 288 return NGX_CHAIN_ERROR;
289 } 289 }
290 290
291 if (n < 0) { 291 if (n == NGX_AGAIN) {
292 n = 0; 292 c->buffered = 1;
293 return in;
293 } 294 }
294 295
295 in->buf->pos += n; 296 in->buf->pos += n;
296 297
297 return in; 298 return in;