From 95bfc0b8565bcff46f5fd9f6d0ba3072abe476ee Mon Sep 17 00:00:00 2001 From: Bryan Phillippe Date: Fri, 20 Aug 2010 10:42:29 -0700 Subject: [PATCH] socket-util: Remove stray printf() from make_unix_socket(). --- AUTHORS | 1 + lib/socket-util.c | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/AUTHORS b/AUTHORS index d0e8b530e..c396dcfc0 100644 --- a/AUTHORS +++ b/AUTHORS @@ -3,6 +3,7 @@ signed off on commits in the Open vSwitch version control repository. Andy Southgate andy.southgate@citrix.com Ben Pfaff blp@nicira.com +Bryan Phillippe bp@toroki.com Dan Wendlandt dan@nicira.com David Erickson derickso@stanford.edu Glen Gibb grg@stanford.edu 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; } } -- 2.43.0