]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
common: fix value of CINIT_FLAG_DEFER_DROP_PRIVILEGES 10278/head
authorCasey Bodley <cbodley@redhat.com>
Wed, 27 Apr 2016 20:53:26 +0000 (16:53 -0400)
committerNathan Cutler <ncutler@suse.com>
Wed, 13 Jul 2016 09:51:36 +0000 (11:51 +0200)
0x16 (binary 10110) was overlapping two other flags

Signed-off-by: Casey Bodley <cbodley@redhat.com>
(cherry picked from commit dfb897ad576e4861a3cb75d85dffbbeaad5e980e)

src/common/common_init.h

index 11842225ebff26cb39f4777e2fb87393b6f1f24b..6ef4a90f56af74b274ac903f7b7d76128b5afe92 100644 (file)
@@ -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,
 };
 
 /*