From 8f31f6d723d9477b238c6a5a4c5139d1998d39ae Mon Sep 17 00:00:00 2001 From: Alexis La Goutte Date: Fri, 19 May 2017 17:26:42 +0200 Subject: [PATCH] privsep_io: fix this statement may fall through [-Wimplicit-fallthrough=] with gcc7 --- src/daemon/privsep_io.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/daemon/privsep_io.c b/src/daemon/privsep_io.c index e9734a71..fbfad740 100644 --- a/src/daemon/privsep_io.c +++ b/src/daemon/privsep_io.c @@ -46,6 +46,7 @@ may_read(enum priv_context ctx, void *buf, size_t n) case -1: if (errno == EINTR || errno == EAGAIN) continue; + /* FALL THROUGH */ case 0: return (1); default: -- 2.39.5