From 79fe528287af73c7e1691c7c447972704eb7634b Mon Sep 17 00:00:00 2001 From: Laurent Bercot Date: Tue, 17 Feb 2015 21:29:00 +0000 Subject: Bugfix: s6-log wasn't parsing regexps correctly (!) Thanks to Roy Lanek. version: 2.1.1.1 --- src/fdholder/s6-fdholderd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/fdholder') diff --git a/src/fdholder/s6-fdholderd.c b/src/fdholder/s6-fdholderd.c index b9091d2..b5e80ec 100644 --- a/src/fdholder/s6-fdholderd.c +++ b/src/fdholder/s6-fdholderd.c @@ -800,6 +800,6 @@ int main (int argc, char const *const *argv, char const *const *envp) else client_add(&i, fd, &rre, &wre, flags) ; } } - return (!!numfds | (!!numconn << 1)) ; + return ((!!numfds) | (!!numconn << 1)) ; } } -- cgit v1.3.1