diff options
author | Steve French <sfrench@us.ibm.com> | 2009-04-15 03:09:39 +0000 |
---|---|---|
committer | Steve French <sfrench@us.ibm.com> | 2009-04-17 01:26:50 +0000 |
commit | 88dd47fff4891545bfcfdf39146dde8380771766 (patch) | |
tree | 0a2b71229c1c4d94ae82a303294afcca5847891f /fs/cifs | |
parent | bc8cd4390c9129fbd286b10fa99972dfb68cd069 (diff) | |
download | linux-88dd47fff4891545bfcfdf39146dde8380771766.tar.bz2 |
[CIFS] Fix build break caused by change to new current_umask helper function
Signed-off-by: Steve French <sfrench@us.ibm.com>
Diffstat (limited to 'fs/cifs')
-rw-r--r-- | fs/cifs/dir.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/cifs/dir.c b/fs/cifs/dir.c index e937da7522ef..461750e01364 100644 --- a/fs/cifs/dir.c +++ b/fs/cifs/dir.c @@ -661,7 +661,7 @@ cifs_lookup(struct inode *parent_dir_inode, struct dentry *direntry, if (!((nd->intent.open.flags & O_CREAT) && (nd->intent.open.flags & O_EXCL))) { mode = nd->intent.open.create_mode & - ~current->fs->umask; + ~current_umask(); rc = cifs_posix_open(full_path, &newInode, parent_dir_inode->i_sb, mode, nd->intent.open.flags, &oplock, |