Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 120696
b: refs/heads/master
c: e2950b1
h: refs/heads/master
v: v3
  • Loading branch information
David Howells authored and James Morris committed Nov 13, 2008
1 parent 627b3f3 commit 2cc155c
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 414cb209eaca52b708debc014a8085b7fbb15f14
refs/heads/master: e2950b178e8fa1cb0b122c212b6cd48e75e2b41f
4 changes: 2 additions & 2 deletions trunk/fs/smbfs/dir.c
Original file line number Diff line number Diff line change
Expand Up @@ -667,8 +667,8 @@ smb_make_node(struct inode *dir, struct dentry *dentry, int mode, dev_t dev)

attr.ia_valid = ATTR_MODE | ATTR_UID | ATTR_GID;
attr.ia_mode = mode;
attr.ia_uid = current->euid;
attr.ia_gid = current->egid;
attr.ia_uid = current_euid();
attr.ia_gid = current_egid();

if (!new_valid_dev(dev))
return -EINVAL;
Expand Down
2 changes: 1 addition & 1 deletion trunk/fs/smbfs/inode.c
Original file line number Diff line number Diff line change
Expand Up @@ -586,7 +586,7 @@ static int smb_fill_super(struct super_block *sb, void *raw_data, int silent)
if (parse_options(mnt, raw_data))
goto out_bad_option;
}
mnt->mounted_uid = current->uid;
mnt->mounted_uid = current_uid();
smb_setcodepage(server, &mnt->codepage);

/*
Expand Down
2 changes: 1 addition & 1 deletion trunk/fs/smbfs/proc.c
Original file line number Diff line number Diff line change
Expand Up @@ -864,7 +864,7 @@ smb_newconn(struct smb_sb_info *server, struct smb_conn_opt *opt)
goto out;

error = -EACCES;
if (current->uid != server->mnt->mounted_uid &&
if (current_uid() != server->mnt->mounted_uid &&
!capable(CAP_SYS_ADMIN))
goto out;

Expand Down

0 comments on commit 2cc155c

Please sign in to comment.