comparison src/event/ngx_event_pipe.c @ 6165:d811f22033ad

Event pipe: call ngx_handle_read_event() with a proper flags type. The change was missed in f69d1aab6a0f.
author Sergey Kandaurov <pluknet@nginx.com>
date Wed, 03 Jun 2015 19:12:26 +0300
parents b8926ba4d087
children fc72784b1f52
comparison
equal deleted inserted replaced
6164:4e5dda15f18f 6165:d811f22033ad
20 20
21 21
22 ngx_int_t 22 ngx_int_t
23 ngx_event_pipe(ngx_event_pipe_t *p, ngx_int_t do_write) 23 ngx_event_pipe(ngx_event_pipe_t *p, ngx_int_t do_write)
24 { 24 {
25 u_int flags;
26 ngx_int_t rc; 25 ngx_int_t rc;
26 ngx_uint_t flags;
27 ngx_event_t *rev, *wev; 27 ngx_event_t *rev, *wev;
28 28
29 for ( ;; ) { 29 for ( ;; ) {
30 if (do_write) { 30 if (do_write) {
31 p->log->action = "sending to client"; 31 p->log->action = "sending to client";