Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 23577
b: refs/heads/master
c: 3cdc409
h: refs/heads/master
i:
  23575: c6f3805
v: v3
  • Loading branch information
Adrian Bunk authored and Linus Torvalds committed Mar 25, 2006
1 parent 316b1cb commit 88f1a4e
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: 340e48e662dc9bf79cdd9dc755cb2eb2bad580cd
refs/heads/master: 3cdc409c169c9f2155151eea82cb9868e4d62788
4 changes: 2 additions & 2 deletions trunk/fs/reiserfs/xattr_acl.c
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ struct posix_acl *reiserfs_get_acl(struct inode *inode, int type)
{
char *name, *value;
struct posix_acl *acl, **p_acl;
size_t size;
int size;
int retval;
struct reiserfs_inode_info *reiserfs_i = REISERFS_I(inode);

Expand All @@ -206,7 +206,7 @@ struct posix_acl *reiserfs_get_acl(struct inode *inode, int type)
return posix_acl_dup(*p_acl);

size = reiserfs_xattr_get(inode, name, NULL, 0);
if ((int)size < 0) {
if (size < 0) {
if (size == -ENODATA || size == -ENOSYS) {
*p_acl = ERR_PTR(-ENODATA);
return NULL;
Expand Down

0 comments on commit 88f1a4e

Please sign in to comment.