[OpenWrt-Devel] [PATCH 1/3] ustream-ssl: Fix ustream_ssl_poll
Christoph Ziebuhr
chris at codefrickler.de
Mon Dec 1 08:51:32 EST 2014
Signed-off-by: Christoph Ziebuhr <chris at codefrickler.de>
---
ustream-ssl.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/ustream-ssl.c b/ustream-ssl.c
index b6b7401..cf8cb84 100644
--- a/ustream-ssl.c
+++ b/ustream-ssl.c
@@ -153,7 +153,7 @@ static bool ustream_ssl_poll(struct ustream *s)
bool fd_poll;
fd_poll = ustream_poll(us->conn);
- return __ustream_ssl_poll(s) || fd_poll;
+ return __ustream_ssl_poll(us->conn) || fd_poll;
}
static void ustream_ssl_stream_init(struct ustream_ssl *us)
--
1.9.1
_______________________________________________
openwrt-devel mailing list
openwrt-devel at lists.openwrt.org
https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel
More information about the openwrt-devel
mailing list