Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 334375
b: refs/heads/master
c: 66415f6
h: refs/heads/master
i:
  334373: 052bf95
  334371: e35238f
  334367: 43896ef
v: v3
  • Loading branch information
Zhao Hongjiang authored and Jan Kara committed Oct 9, 2012
1 parent 86d9edc commit b50b677
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 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: ae2cf4284e198684cad8f654923dd8062ee46f88
refs/heads/master: 66415f6b50f5bcbc56c78df54aacee73f3d03a3d
4 changes: 2 additions & 2 deletions trunk/fs/ext3/super.c
Original file line number Diff line number Diff line change
Expand Up @@ -1001,7 +1001,7 @@ static int parse_options (char *options, struct super_block *sb,
uid = make_kuid(current_user_ns(), option);
if (!uid_valid(uid)) {
ext3_msg(sb, KERN_ERR, "Invalid uid value %d", option);
return -1;
return 0;

}
sbi->s_resuid = uid;
Expand All @@ -1012,7 +1012,7 @@ static int parse_options (char *options, struct super_block *sb,
gid = make_kgid(current_user_ns(), option);
if (!gid_valid(gid)) {
ext3_msg(sb, KERN_ERR, "Invalid gid value %d", option);
return -1;
return 0;
}
sbi->s_resgid = gid;
break;
Expand Down

0 comments on commit b50b677

Please sign in to comment.