From: Ben Pfaff Date: Fri, 8 Jan 2010 17:40:45 +0000 (-0800) Subject: stream-ssl: Fix bug that crept in during rebasing. X-Git-Tag: v1.0.0~259^2~326 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=1504c76330dbe5501fa278bb0b163a8e9578f390;p=sliver-openvswitch.git stream-ssl: Fix bug that crept in during rebasing. --- diff --git a/lib/stream-ssl.c b/lib/stream-ssl.c index 6839341c1..e501b995d 100644 --- a/lib/stream-ssl.c +++ b/lib/stream-ssl.c @@ -732,7 +732,7 @@ pssl_open(const char *name UNUSED, char *suffix, struct pstream **pstreamp) return retval; } - fd = inet_open_passive(SOCK_STREAM, suffix, OFP_SSL_PORT, NULL); + fd = inet_open_passive(SOCK_STREAM, suffix, OFP_SSL_PORT, &sin); if (fd < 0) { return -fd; }