diff options
author | Avra Sengupta <asengupt@redhat.com> | 2013-02-26 11:37:30 +0530 |
---|---|---|
committer | Anand Avati <avati@redhat.com> | 2013-03-01 14:52:32 -0800 |
commit | 1ffe690f563804ba1a87d3f526de32bc64e1a2cc (patch) | |
tree | c3491297adfe29cbf8fe004457d867111ef503f0 /xlators/storage | |
parent | 9dac72481beb92547d3554b3355f3497a73a7fff (diff) |
Modified validation parameters for owner-uid and owner-gid.
owner-uid and owner-gid will not receive negative values anymore.
Change-Id: I82741d3d01b29e448294b2ec093fb70d22a5c77e
BUG: 912297
Signed-off-by: Avra Sengupta <asengupt@redhat.com>
Reviewed-on: http://review.gluster.org/4581
Reviewed-by: Amar Tumballi <amarts@redhat.com>
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Anand Avati <avati@redhat.com>
Diffstat (limited to 'xlators/storage')
-rw-r--r-- | xlators/storage/posix/src/posix.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/xlators/storage/posix/src/posix.c b/xlators/storage/posix/src/posix.c index 1a7a2c75123..44aeca356ba 100644 --- a/xlators/storage/posix/src/posix.c +++ b/xlators/storage/posix/src/posix.c @@ -4541,11 +4541,15 @@ struct volume_options options[] = { { .key = {"brick-uid"}, .type = GF_OPTION_TYPE_INT, + .min = 0, + .validate = GF_OPT_VALIDATE_MIN, .description = "Support for setting uid of brick's owner" }, { .key = {"brick-gid"}, .type = GF_OPTION_TYPE_INT, + .min = 0, + .validate = GF_OPT_VALIDATE_MIN, .description = "Support for setting gid of brick's owner" }, { .key = {NULL} } |