chmod: no S_ISVTX

This commit is contained in:
Connor Lane Smith
2011-05-29 20:38:03 +01:00
parent 3172b979dc
commit 04bac53826
2 changed files with 4 additions and 5 deletions

View File

@@ -35,7 +35,6 @@ main(int argc, char *argv[])
/* posix doesn't specify modal bits */
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;