Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 201802
b: refs/heads/master
c: 327aec0
h: refs/heads/master
v: v3
  • Loading branch information
Eric Van Hensbergen committed Aug 2, 2010
1 parent b455276 commit 93d1f7d
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: ea1375333ef58298ba4d3c638f3cba982c76504d
refs/heads/master: 327aec03ac4c7bbf5e41ff03ac3a84c424589f27
4 changes: 2 additions & 2 deletions trunk/fs/9p/xattr.c
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ ssize_t v9fs_xattr_get(struct dentry *dentry, const char *name,
else
read_count = attr_size;
read_count = p9_client_read(attr_fid, ((char *)buffer)+offset,
0, offset, read_count);
NULL, offset, read_count);
if (read_count < 0) {
/* error in xattr read */
retval = read_count;
Expand Down Expand Up @@ -132,7 +132,7 @@ int v9fs_xattr_set(struct dentry *dentry, const char *name,
else
write_count = value_len;
write_count = p9_client_write(fid, ((char *)value)+offset,
0, offset, write_count);
NULL, offset, write_count);
if (write_count < 0) {
/* error in xattr write */
retval = write_count;
Expand Down

0 comments on commit 93d1f7d

Please sign in to comment.