summaryrefslogtreecommitdiff
path: root/source3/lib/sock_exec.c
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2012-03-24 14:57:33 +0100
committerJelmer Vernooij <jelmer@samba.org>2012-03-24 14:57:33 +0100
commite7cd5291db8df13ca60c081727c7d804308c8737 (patch)
tree9c0ffc536492be69515c6b511e0405378814a5f9 /source3/lib/sock_exec.c
parenta9c22de3f44e00564dfb37fb4c7a99b485ffd96e (diff)
downloadsamba-e7cd5291db8df13ca60c081727c7d804308c8737.tar.gz
samba-e7cd5291db8df13ca60c081727c7d804308c8737.tar.bz2
samba-e7cd5291db8df13ca60c081727c7d804308c8737.zip
sock_exec: Avoid sys_connect.
Diffstat (limited to 'source3/lib/sock_exec.c')
-rw-r--r--source3/lib/sock_exec.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/lib/sock_exec.c b/source3/lib/sock_exec.c
index 2333d7c739..419d60d05c 100644
--- a/source3/lib/sock_exec.c
+++ b/source3/lib/sock_exec.c
@@ -60,7 +60,7 @@ static int socketpair_tcp(int fd[2])
sock.sin_addr.s_addr = htonl(INADDR_LOOPBACK);
- if (sys_connect(fd[1], (struct sockaddr *)&sock) == -1) {
+ if (connect(fd[1], (struct sockaddr *)&sock, socklen) == -1) {
if (errno != EINPROGRESS) goto failed;
} else {
connect_done = 1;
@@ -70,7 +70,7 @@ static int socketpair_tcp(int fd[2])
close(listener);
if (connect_done == 0) {
- if (sys_connect(fd[1], (struct sockaddr *)&sock) != 0
+ if (connect(fd[1], (struct sockaddr *)&sock, salen) != 0
&& errno != EISCONN) goto failed;
}