comparison src/os/unix/ngx_udp_recv.c @ 665:0b460e61bdcd default tip

Merge with nginx 1.0.0.
author Maxim Dounin <mdounin@mdounin.ru>
date Mon, 25 Apr 2011 04:22:17 +0400
parents c456a023113c
children
comparison
equal deleted inserted replaced
572:06419a2298a9 665:0b460e61bdcd
58 58
59 } while (err == NGX_EINTR); 59 } while (err == NGX_EINTR);
60 60
61 rev->ready = 0; 61 rev->ready = 0;
62 62
63 if (n == NGX_ERROR){ 63 if (n == NGX_ERROR) {
64 rev->error = 1; 64 rev->error = 1;
65 } 65 }
66 66
67 return n; 67 return n;
68 } 68 }
102 102
103 } while (err == NGX_EINTR); 103 } while (err == NGX_EINTR);
104 104
105 rev->ready = 0; 105 rev->ready = 0;
106 106
107 if (n == NGX_ERROR){ 107 if (n == NGX_ERROR) {
108 rev->error = 1; 108 rev->error = 1;
109 } 109 }
110 110
111 return n; 111 return n;
112 } 112 }