From: Christoph Ziebuhr Date: Mon, 1 Dec 2014 13:41:34 +0000 (+0100) Subject: Fix ustream_ssl_poll X-Git-Url: http://git.openwrt.org/?p=project%2Fustream-ssl.git;a=commitdiff_plain;h=62f173c3982bba5b250512f4322f9f5dbfffe812 Fix ustream_ssl_poll Signed-off-by: Christoph Ziebuhr --- 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)