Fix unintended changes in r7614

This commit is contained in:
Erik van der Kouwe
2010-07-01 11:56:02 +00:00
parent 06a0260c3c
commit b5ae3961bb
9 changed files with 979 additions and 7 deletions

View File

@@ -68,6 +68,7 @@ struct stat {
#define S_ISSOCK(m) (((m) & S_IFMT) == S_IFSOCK) /* is a socket */
#define DEFFILEMODE (S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP|S_IROTH|S_IWOTH)
#define ALLPERMS (S_ISUID|S_ISGID|S_ISVTX|S_IRWXU|S_IRWXG|S_IRWXO)
/* Function Prototypes. */
_PROTOTYPE( int chmod, (const char *_path, mode_t _mode) );