From 1504c76330dbe5501fa278bb0b163a8e9578f390 Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Fri, 8 Jan 2010 09:40:45 -0800 Subject: [PATCH] stream-ssl: Fix bug that crept in during rebasing. --- lib/stream-ssl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.45.2