From: Tom Gundersen Date: Mon, 29 Dec 2014 00:50:07 +0000 (+0100) Subject: sd-rtnl: rtnl_poll - fix typo X-Git-Tag: v219~775 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=f55dc7c96ef6a8db32451a0d5f708090591a9141;p=elogind.git sd-rtnl: rtnl_poll - fix typo This caused rtnl_poll to always return true immediately in sd_rtnl_call(). --- diff --git a/src/libsystemd/sd-rtnl/sd-rtnl.c b/src/libsystemd/sd-rtnl/sd-rtnl.c index abb011ea2..ae3573937 100644 --- a/src/libsystemd/sd-rtnl/sd-rtnl.c +++ b/src/libsystemd/sd-rtnl/sd-rtnl.c @@ -489,7 +489,7 @@ static int rtnl_poll(sd_rtnl *rtnl, bool need_more, uint64_t timeout_usec) { if (need_more) /* Caller wants more data, and doesn't care about * what's been read or any other timeouts. */ - return e |= POLLIN; + e |= POLLIN; else { usec_t until; /* Caller wants to process if there is something to