[PATCH] git-daemon: fix poll timeout
From: Timo Hirvonen <hidden>
Date: 2016-06-15 22:42:09
Subsystem:
the rest · Maintainer:
Linus Torvalds
From: Timo Hirvonen <hidden>
Date: 2016-06-15 22:42:09
Subsystem:
the rest · Maintainer:
Linus Torvalds
Timeout must be negative (infinite), not 0. --- daemon.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) applies-to: 50f9bed9a78e1f51178ebf6be3cd9c20b2ffcb0b a6603be778e535b12f7aa42174889981af42b10c
diff --git a/daemon.c b/daemon.c
index c3381b3..b3bcd7a 100644
--- a/daemon.c
+++ b/daemon.c@@ -533,7 +533,7 @@ static int service_loop(int socknum, int for (;;) { int i; - if (poll(pfd, socknum, 0) < 0) { + if (poll(pfd, socknum, -1) < 0) { if (errno != EINTR) { error("poll failed, resuming: %s", strerror(errno));
--- 0.99.8.GIT