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-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1504c76330dbe5501fa278bb0b163a8e9578f390;p=openvswitch stream-ssl: Fix bug that crept in during rebasing. --- diff --git a/lib/stream-ssl.c b/lib/stream-ssl.c index 6839341c..e501b995 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; }