comparison src/os/unix/ngx_recv.c @ 582:c456a023113c NGINX_0_8_43

nginx 0.8.43 *) Feature: large geo ranges base loading speed-up. *) Bugfix: an error_page redirection to "location /zero { return 204; }" without changing status code kept the error body; the bug had appeared in 0.8.42. *) Bugfix: nginx might close IPv6 listen socket during reconfiguration. Thanks to Maxim Dounin. *) Bugfix: the $uid_set variable may be used at any request processing stage.
author Igor Sysoev <http://sysoev.ru>
date Wed, 30 Jun 2010 00:00:00 +0400
parents a39aab45a53f
children d0f7a625f27c
comparison
equal deleted inserted replaced
581:22b2345b75d9 582:c456a023113c
111 111
112 } while (err == NGX_EINTR); 112 } while (err == NGX_EINTR);
113 113
114 rev->ready = 0; 114 rev->ready = 0;
115 115
116 if (n == NGX_ERROR){ 116 if (n == NGX_ERROR) {
117 rev->error = 1; 117 rev->error = 1;
118 } 118 }
119 119
120 return n; 120 return n;
121 } 121 }
167 167
168 } while (err == NGX_EINTR); 168 } while (err == NGX_EINTR);
169 169
170 rev->ready = 0; 170 rev->ready = 0;
171 171
172 if (n == NGX_ERROR){ 172 if (n == NGX_ERROR) {
173 rev->error = 1; 173 rev->error = 1;
174 } 174 }
175 175
176 return n; 176 return n;
177 } 177 }