mirror of
git://sourceware.org/git/glibc.git
synced 2025-03-31 14:01:18 +08:00
tst-cancel4-common.c: fix calling socketpair
PF_UNIX was actually never intended to be passed as protocol parameter to socket() calls: it is a protocol family, not a protocol. It happens that Linux introduced accepting it during its 2.0 development, but it shouldn't. OpenBSD kernels accept it as well, but FreeBSD and NetBSD rightfully do not. GNU/Hurd does not either. * nptl/tst-cancel4-common.c (do_test): Pass 0 instead of PF_UNIX as protocol.
This commit is contained in:
parent
4fdd4d41a1
commit
b9ca3f3efb
@ -20,7 +20,7 @@
|
||||
static int
|
||||
do_test (void)
|
||||
{
|
||||
if (socketpair (AF_UNIX, SOCK_STREAM, PF_UNIX, fds) != 0)
|
||||
if (socketpair (AF_UNIX, SOCK_STREAM, 0, fds) != 0)
|
||||
{
|
||||
perror ("socketpair");
|
||||
exit (1);
|
||||
|
Loading…
x
Reference in New Issue
Block a user