diff options
Diffstat (limited to 'sysdeps/unix/sysv/linux/opensock.c')
-rw-r--r-- | sysdeps/unix/sysv/linux/opensock.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/unix/sysv/linux/opensock.c b/sysdeps/unix/sysv/linux/opensock.c index 86c4d39630..7913886b6c 100644 --- a/sysdeps/unix/sysv/linux/opensock.c +++ b/sysdeps/unix/sysv/linux/opensock.c @@ -67,7 +67,7 @@ __opensock (void) { assert (last_type != 0); - result = socket (last_family, last_type, 0); + result = __socket (last_family, last_type, 0); if (result != -1 || errno != EAFNOSUPPORT) /* Maybe the socket type isn't supported anymore (module is unloaded). In this case again try to find the type. */ @@ -102,7 +102,7 @@ __opensock (void) if (afs[cnt].family == AF_NETROM || afs[cnt].family == AF_X25) type = SOCK_SEQPACKET; - result = socket (afs[cnt].family, type, 0); + result = __socket (afs[cnt].family, type, 0); if (result != -1) { /* Found an available family. */ |