Re: [PATCH] accept4 tests: fix specified flags

2015-10-12 Thread Pádraig Brady
On 12/10/15 12:18, Pino Toscano wrote: > On Friday 09 October 2015 15:41:47 Pádraig Brady wrote: >> On 09/10/15 14:38, Pino Toscano wrote: >>> On Thursday 08 October 2015 15:46:42 Pádraig Brady wrote: On 08/10/15 13:47, Pino Toscano wrote: > Pass only SOCK_* flags to accept4, as they are t

Re: [PATCH] accept4 tests: fix specified flags

2015-10-12 Thread Pino Toscano
On Friday 09 October 2015 15:41:47 Pádraig Brady wrote: > On 09/10/15 14:38, Pino Toscano wrote: > > On Thursday 08 October 2015 15:46:42 Pádraig Brady wrote: > >> On 08/10/15 13:47, Pino Toscano wrote: > >>> Pass only SOCK_* flags to accept4, as they are the only documented > >>> ones, and passing

Re: [PATCH] accept4 tests: fix specified flags

2015-10-09 Thread Pino Toscano
On Thursday 08 October 2015 15:46:42 Pádraig Brady wrote: > On 08/10/15 13:47, Pino Toscano wrote: > > Pass only SOCK_* flags to accept4, as they are the only documented > > ones, and passing others may trigger EINVAL. > > * tests/test-accept4.c: (main): Pass SOCK_CLOEXEC instead of > > O_CLOEXEC |

Re: [PATCH] accept4 tests: fix specified flags

2015-10-09 Thread Pádraig Brady
On 09/10/15 14:38, Pino Toscano wrote: > On Thursday 08 October 2015 15:46:42 Pádraig Brady wrote: >> On 08/10/15 13:47, Pino Toscano wrote: >>> Pass only SOCK_* flags to accept4, as they are the only documented >>> ones, and passing others may trigger EINVAL. >>> * tests/test-accept4.c: (main): Pa

Re: [PATCH] accept4 tests: fix specified flags

2015-10-08 Thread Pádraig Brady
On 08/10/15 13:47, Pino Toscano wrote: > Pass only SOCK_* flags to accept4, as they are the only documented > ones, and passing others may trigger EINVAL. > * tests/test-accept4.c: (main): Pass SOCK_CLOEXEC instead of > O_CLOEXEC | O_BINARY to accept4. > --- > ChangeLog| 7 +++ > t

[PATCH] accept4 tests: fix specified flags

2015-10-08 Thread Pino Toscano
Pass only SOCK_* flags to accept4, as they are the only documented ones, and passing others may trigger EINVAL. * tests/test-accept4.c: (main): Pass SOCK_CLOEXEC instead of O_CLOEXEC | O_BINARY to accept4. --- ChangeLog| 7 +++ tests/test-accept4.c | 4 ++-- 2 files changed, 9 inse