[CIFS] Fix build break caused by change to new current_umask helper function

Signed-off-by: Steve French <sfrench@us.ibm.com>

+1 -1
+1 -1
fs/cifs/dir.c
··· 661 if (!((nd->intent.open.flags & O_CREAT) && 662 (nd->intent.open.flags & O_EXCL))) { 663 mode = nd->intent.open.create_mode & 664 - ~current->fs->umask; 665 rc = cifs_posix_open(full_path, &newInode, 666 parent_dir_inode->i_sb, mode, 667 nd->intent.open.flags, &oplock,
··· 661 if (!((nd->intent.open.flags & O_CREAT) && 662 (nd->intent.open.flags & O_EXCL))) { 663 mode = nd->intent.open.create_mode & 664 + ~current_umask(); 665 rc = cifs_posix_open(full_path, &newInode, 666 parent_dir_inode->i_sb, mode, 667 nd->intent.open.flags, &oplock,