diff options
Diffstat (limited to 'xlators/storage/posix/src/posix-helpers.c')
-rw-r--r-- | xlators/storage/posix/src/posix-helpers.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/xlators/storage/posix/src/posix-helpers.c b/xlators/storage/posix/src/posix-helpers.c index e1bd5b127fd..9018a739f83 100644 --- a/xlators/storage/posix/src/posix-helpers.c +++ b/xlators/storage/posix/src/posix-helpers.c @@ -964,6 +964,10 @@ posix_pacl_set (const char *path, const char *key, const char *acl_s) acl = acl_from_text (acl_s); ret = acl_set_file (path, type, acl); + if (ret) + /* posix_handle_pair expects ret to be the errno */ + ret = -errno; + acl_free (acl); return ret; |