projects
/
openvswitch
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2d1c571
)
socket-util: Remove stray printf() from make_unix_socket().
author
Bryan Phillippe
<bp@toroki.com>
Fri, 20 Aug 2010 17:42:29 +0000
(10:42 -0700)
committer
Ben Pfaff
<blp@nicira.com>
Fri, 20 Aug 2010 17:43:33 +0000
(10:43 -0700)
AUTHORS
patch
|
blob
|
history
lib/socket-util.c
patch
|
blob
|
history
diff --git
a/AUTHORS
b/AUTHORS
index d0e8b530e8d97ba8be1d02ebd2cc6be2f109f3b9..c396dcfc0c50c80e0f51198d9ac6c7866b40bac2 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
diff --git
a/lib/socket-util.c
b/lib/socket-util.c
index 16a321c201804343bd285b56d41232422fefafe7..9031b2759f0f4c7afd9d99f01916b17aefc2478a 100644
(file)
--- 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;
}
}