2
0
mirror of https://github.com/openvswitch/ovs synced 2025-08-30 22:05:19 +00:00

socket-util: Remove stray printf() from make_unix_socket().

This commit is contained in:
Bryan Phillippe
2010-08-20 10:42:29 -07:00
committed by Ben Pfaff
parent 2d1c5712af
commit 95bfc0b856
2 changed files with 1 additions and 1 deletions

View File

@@ -270,7 +270,6 @@ make_unix_socket(int style, bool nonblock, bool passcred OVS_UNUSED,
make_sockaddr_un(connect_path, &un, &un_len);
if (connect(fd, (struct sockaddr*) &un, un_len)
&& errno != EINPROGRESS) {
printf("connect failed with %s\n", strerror(errno));
goto error;
}
}