summaryrefslogtreecommitdiff
path: root/llmnrd.c
diff options
context:
space:
mode:
Diffstat (limited to 'llmnrd.c')
-rw-r--r--llmnrd.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/llmnrd.c b/llmnrd.c
index e79db24..92cd738 100644
--- a/llmnrd.c
+++ b/llmnrd.c
@@ -262,9 +262,10 @@ int main(int argc, char **argv)
ret = select(nfds, &rfds, NULL, &efds, NULL);
if (ret < 0) {
- if (errno != EINTR)
+ if (errno != EINTR) {
log_err("Failed to select() on socket: %s\n", strerror(errno));
- goto out;
+ goto out;
+ }
} else if (ret) {
/* handle RTNL messages first so we can respond with
* up-to-date information.