From d94e5bc0903a40d8ea353327ddaa7b8567b95f5f Mon Sep 17 00:00:00 2001 From: Casey Bodley Date: Wed, 27 Apr 2016 16:53:26 -0400 Subject: [PATCH] common: fix value of CINIT_FLAG_DEFER_DROP_PRIVILEGES 0x16 (binary 10110) was overlapping two other flags Signed-off-by: Casey Bodley (cherry picked from commit dfb897ad576e4861a3cb75d85dffbbeaad5e980e) --- src/common/common_init.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/common_init.h b/src/common/common_init.h index 11842225ebff2..6ef4a90f56af7 100644 --- a/src/common/common_init.h +++ b/src/common/common_init.h @@ -39,7 +39,7 @@ enum common_init_flags_t { CINIT_FLAG_NO_DAEMON_ACTIONS = 0x8, // don't drop privileges - CINIT_FLAG_DEFER_DROP_PRIVILEGES = 0x16, + CINIT_FLAG_DEFER_DROP_PRIVILEGES = 0x10, }; /*