socket-util: Remove stray printf() from make_unix_socket().
authorBryan Phillippe <bp@toroki.com>
Fri, 20 Aug 2010 17:42:29 +0000 (10:42 -0700)
committerBen Pfaff <blp@nicira.com>
Fri, 20 Aug 2010 17:43:33 +0000 (10:43 -0700)
AUTHORS
lib/socket-util.c

diff --git a/AUTHORS b/AUTHORS
index d0e8b53..c396dcf 100644 (file)
--- 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
index 16a321c..9031b27 100644 (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;
         }
     }