From: Casey Bodley Date: Wed, 27 Apr 2016 20:53:26 +0000 (-0400) Subject: common: fix value of CINIT_FLAG_DEFER_DROP_PRIVILEGES X-Git-Tag: v11.0.0~812^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=dfb897ad576e4861a3cb75d85dffbbeaad5e980e;p=ceph.git common: fix value of CINIT_FLAG_DEFER_DROP_PRIVILEGES 0x16 (binary 10110) was overlapping two other flags Signed-off-by: Casey Bodley --- diff --git a/src/common/common_init.h b/src/common/common_init.h index 11842225ebf..6ef4a90f56a 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, }; /*