sbase

suckless unix tools
git clone git://git.2f30.org/sbase
Log | Files | Refs | README | LICENSE

commit 35053c1d4803738bb6f3c40c8418748e29358bfa
parent a4eb639ba7b71c461cecb0cfe445ac065e582b49
Author: Markus Wichmann <nullplan@gmx.net>
Date:   Sun, 20 Oct 2013 10:50:58 +0200

Make chmod honor S_ISVTX.

Diffstat:
Mchmod.c | 6+++++-
1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/chmod.c b/chmod.c @@ -95,6 +95,7 @@ parsemode(const char *str) if(*end == '\0') { if(octal & 04000) mode |= S_ISUID; if(octal & 02000) mode |= S_ISGID; + if(octal & 01000) mode |= S_ISVTX; if(octal & 00400) mode |= S_IRUSR; if(octal & 00200) mode |= S_IWUSR; if(octal & 00100) mode |= S_IXUSR; @@ -140,7 +141,10 @@ parsemode(const char *str) case 's': mode |= S_ISUID|S_ISGID; break; - /* error */ + case 't': + mode |= S_ISVTX; + break; + /* error */ default: eprintf("%s: invalid mode\n", str); }