From: Andrew Tridgell Date: Tue, 9 Jun 2009 04:54:15 +0000 (+1000) Subject: It seems that IRIX doesn't have IOV_MAX X-Git-Tag: tdb-1.1.5~157 X-Git-Url: http://git.samba.org/samba.git/?p=ira%2Fwip.git;a=commitdiff_plain;h=c0965e0eec78a9900fabd0a55c7e8d8bfc64f4a4;ds=inline It seems that IRIX doesn't have IOV_MAX --- diff --git a/lib/tsocket/tsocket.c b/lib/tsocket/tsocket.c index e618fb79b83..e05c8d53f5b 100644 --- a/lib/tsocket/tsocket.c +++ b/lib/tsocket/tsocket.c @@ -539,10 +539,12 @@ struct tevent_req *tstream_readv_send(TALLOC_CTX *mem_ctx, state->ret = -1; /* first check if the input is ok */ +#ifdef IOV_MAX if (count > IOV_MAX) { tevent_req_error(req, EMSGSIZE); goto post; } +#endif for (i=0; i < count; i++) { int tmp = to_read; @@ -658,10 +660,12 @@ struct tevent_req *tstream_writev_send(TALLOC_CTX *mem_ctx, state->ret = -1; /* first check if the input is ok */ +#ifdef IOV_MAX if (count > IOV_MAX) { tevent_req_error(req, EMSGSIZE); goto post; } +#endif for (i=0; i < count; i++) { int tmp = to_write;