comparison src/event/ngx_event_openssl.c @ 2052:b4085596a7e6

fix "proxy_pass https://..." broken in r1427
author Igor Sysoev <igor@sysoev.ru>
date Fri, 20 Jun 2008 14:42:54 +0000
parents 2a92804f4109
children 9697407e9ecb
comparison
equal deleted inserted replaced
2051:115e6f029fcc 2052:b4085596a7e6
672 672
673 continue; 673 continue;
674 } 674 }
675 675
676 if (bytes) { 676 if (bytes) {
677
678 if (n == 0 || n == NGX_ERROR) {
679 c->read->ready = 1;
680 }
681
677 return bytes; 682 return bytes;
678 } 683 }
679 684
680 return n; 685 return n;
681 } 686 }