From: Bryan Phillippe Date: Fri, 20 Aug 2010 17:42:29 +0000 (-0700) Subject: socket-util: Remove stray printf() from make_unix_socket(). X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=95bfc0b8565bcff46f5fd9f6d0ba3072abe476ee;p=openvswitch socket-util: Remove stray printf() from make_unix_socket(). --- diff --git a/AUTHORS b/AUTHORS index d0e8b530..c396dcfc 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 16a321c2..9031b275 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; } }