summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Ziebuhr <chris@codefrickler.de>2014-12-01 14:41:34 +0100
committerFelix Fietkau <nbd@openwrt.org>2014-12-01 15:55:20 +0100
commit62f173c3982bba5b250512f4322f9f5dbfffe812 (patch)
tree8315c167c1daf45505a3ab71f7acbfd15d69271c
parent0966435353d08f6644b65ac22a0b284f17c5787e (diff)
downloadustream-ssl-62f173c3982bba5b250512f4322f9f5dbfffe812.tar.gz
Fix ustream_ssl_poll
Signed-off-by: Christoph Ziebuhr <chris@codefrickler.de>
-rw-r--r--ustream-ssl.c2
1 files changed, 1 insertions, 1 deletions
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)