diff options
author | Steve French <sfrench@us.ibm.com> | 2005-11-30 09:38:43 +0300 |
---|---|---|
committer | Steve French <sfrench@us.ibm.com> | 2005-11-30 09:38:43 +0300 |
commit | 25741b3e43151bc207dd2b850b0bb157c442682b (patch) | |
tree | 13d461a077696ad85a6d391a9559393d29e21ac3 /fs/cifs/inode.c | |
parent | 2a138ebb012ac42c082ae8b40c87c1f265664391 (diff) | |
download | linux-25741b3e43151bc207dd2b850b0bb157c442682b.tar.xz |
[CIFS] For previous fix, mode on mkdir needed S_IFDIR left out.
Signed-off-by: Steve French <sfrench@us.ibm.com>
Diffstat (limited to 'fs/cifs/inode.c')
-rw-r--r-- | fs/cifs/inode.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/cifs/inode.c b/fs/cifs/inode.c index e8773461c7f7..411c1f7f84da 100644 --- a/fs/cifs/inode.c +++ b/fs/cifs/inode.c @@ -770,6 +770,7 @@ int cifs_mkdir(struct inode *inode, struct dentry *direntry, int mode) -1, -1, local_nls); */ if(direntry->d_inode) { direntry->d_inode->i_mode = mode; + direntry->d_inode->i_mode |= S_IFDIR; if(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SET_UID) { direntry->d_inode->i_uid = |