stream-ssl: Fix bug that crept in during rebasing.
authorBen Pfaff <blp@nicira.com>
Fri, 8 Jan 2010 17:40:45 +0000 (09:40 -0800)
committerBen Pfaff <blp@nicira.com>
Fri, 8 Jan 2010 17:40:45 +0000 (09:40 -0800)
lib/stream-ssl.c

index 6839341..e501b99 100644 (file)
@@ -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;
     }