Make chmod honor S_ISVTX.

This commit is contained in:
Markus Wichmann 2013-10-20 10:50:58 +02:00 committed by sin
parent a4eb639ba7
commit 35053c1d48
1 changed files with 5 additions and 1 deletions

View File

@ -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);
}