From: Derrick Brashear Date: Thu, 4 Sep 2008 20:41:14 +0000 (+0000) Subject: fileserver-sticky-bit-not-admin-only-20080904 X-Git-Tag: openafs-devel-1_5_61~838 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=9689e78d716422970a0ae3ad89d36acaa517072e;p=packages%2Fo%2Fopenafs.git fileserver-sticky-bit-not-admin-only-20080904 LICENSE IPL10 don't restrict the sticky bit to admins. --- diff --git a/src/viced/afsfileprocs.c b/src/viced/afsfileprocs.c index cd2e27ec0..4ad5899be 100644 --- a/src/viced/afsfileprocs.c +++ b/src/viced/afsfileprocs.c @@ -1554,7 +1554,7 @@ Update_TargetVnodeStatus(Vnode * targetptr, afs_uint32 Caller, #define CREATE_SGUID_ADMIN_ONLY 1 #ifdef CREATE_SGUID_ADMIN_ONLY if (VanillaUser(client)) - modebits = modebits & 0777; + modebits = modebits & 1777; #endif if (VanillaUser(client)) { targetptr->disk.modeBits = modebits;