diff options
author | Volker Lendecke <vl@samba.org> | 2009-05-23 16:10:54 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2009-05-24 13:47:29 +0200 |
commit | a8e02b591b0c82c1f75f4f51bc683d9775f13d54 (patch) | |
tree | 25628a860b58c1dfad40028a83e2a148fcaa568f /source3/rpc_server | |
parent | 1a69ba894514dd4eaba9fa015bdf930a5b620fea (diff) | |
download | samba-a8e02b591b0c82c1f75f4f51bc683d9775f13d54.tar.gz samba-a8e02b591b0c82c1f75f4f51bc683d9775f13d54.tar.bz2 samba-a8e02b591b0c82c1f75f4f51bc683d9775f13d54.zip |
Add "err_on_readability" to writev_send
A socket where the other side has closed only becomes readable. To catch
errors early when sitting in a pure writev, we need to also test for
readability.
Diffstat (limited to 'source3/rpc_server')
-rw-r--r-- | source3/rpc_server/srv_pipe_hnd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/rpc_server/srv_pipe_hnd.c b/source3/rpc_server/srv_pipe_hnd.c index f2441619ac..a17adfb7a0 100644 --- a/source3/rpc_server/srv_pipe_hnd.c +++ b/source3/rpc_server/srv_pipe_hnd.c @@ -1221,7 +1221,7 @@ struct tevent_req *np_write_send(TALLOC_CTX *mem_ctx, struct event_context *ev, state->iov.iov_len = len; subreq = writev_send(state, ev, p->write_queue, p->fd, - &state->iov, 1); + false, &state->iov, 1); if (subreq == NULL) { goto fail; } |