diff options
author | Anand V. Avati <avati@blackhole.gluster.com> | 2009-10-16 07:30:25 +0000 |
---|---|---|
committer | Anand V. Avati <avati@dev.gluster.com> | 2009-10-16 06:22:17 -0700 |
commit | 355150088d688fafd82c54af80a583a26732d0da (patch) | |
tree | 44004dad81de42c8ef6759dab8366d1933a16198 /xlators/storage | |
parent | ff38298144730c95627cfc11416baa6b75d3c94d (diff) |
posix - use lchown and lchmod in setattr
Signed-off-by: Anand V. Avati <avati@dev.gluster.com>
BUG: 315 (generation number support)
URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=315
Diffstat (limited to 'xlators/storage')
-rw-r--r-- | xlators/storage/posix/src/posix.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xlators/storage/posix/src/posix.c b/xlators/storage/posix/src/posix.c index 0f0d500e4..3bd7fe025 100644 --- a/xlators/storage/posix/src/posix.c +++ b/xlators/storage/posix/src/posix.c @@ -450,7 +450,7 @@ posix_do_chmod (xlator_t *this, { int32_t ret = -1; - ret = chmod (path, stbuf->st_mode); + ret = lchmod (path, stbuf->st_mode); if ((ret == -1) && (errno == ENOSYS)) { ret = chmod (path, stbuf->st_mode); } @@ -474,7 +474,7 @@ posix_do_chown (xlator_t *this, if (valid & GF_SET_ATTR_GID) gid = stbuf->st_gid; - ret = chown (path, uid, gid); + ret = lchown (path, uid, gid); return ret; } |