diff options
-rw-r--r-- | AUTHORS | 1 | ||||
-rw-r--r-- | src/s6-rc/s6-rc-compile.c | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -5,6 +5,7 @@ Contributors: Eric Le Bihan <eric.le.bihan.dev@free.fr> Brett Neumeier <bneumeier@gmail.com> Lionel Van Bemten <lionel.van_bemten@nokia.com> + Christian Hohnstaedt <christian@hohnstaedt.de> Thanks to: Avery Payne <avery.p.payne@gmail.com> diff --git a/src/s6-rc/s6-rc-compile.c b/src/s6-rc/s6-rc-compile.c index 7aa37ea..c233f1a 100644 --- a/src/s6-rc/s6-rc-compile.c +++ b/src/s6-rc/s6-rc-compile.c @@ -368,7 +368,7 @@ static uint32_t read_flags (int dfd, char const *srcdir, char const *name) if (errno != ENOENT) strerr_diefu6sys(111, "read ", srcdir, "/", name, "/", files[i]) ; } - else flags |= i ; + else flags |= 1 << i ; } return flags ; } |