summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorBryan Phillippe <bp@toroki.com>2010-08-20 10:42:29 -0700
committerBen Pfaff <blp@nicira.com>2010-08-20 10:43:33 -0700
commit95bfc0b8565bcff46f5fd9f6d0ba3072abe476ee (patch)
treec64a8def3626ad0183cc8f4c122382fb87e86df6 /lib
parent2d1c5712afd3e076e77212e558a86638134de399 (diff)
downloadopenvswitch-95bfc0b8565bcff46f5fd9f6d0ba3072abe476ee.tar.gz
socket-util: Remove stray printf() from make_unix_socket().
Diffstat (limited to 'lib')
-rw-r--r--lib/socket-util.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/socket-util.c b/lib/socket-util.c
index 16a321c20..9031b2759 100644
--- a/lib/socket-util.c
+++ b/lib/socket-util.c
@@ -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;
}
}