summaryrefslogtreecommitdiff
path: root/source3/modules/vfs_acl_common.c
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2011-02-02 12:50:42 +0100
committerGünther Deschner <gd@samba.org>2011-02-02 15:44:21 +0100
commit50be0b2c1e7e0573245e21df886ab491a0738226 (patch)
tree32e78d9652de8f24255b0952e8347b51bbb23dac /source3/modules/vfs_acl_common.c
parent3bdd2efff8d11448275965b464ac194a2ee0d3ae (diff)
downloadsamba-50be0b2c1e7e0573245e21df886ab491a0738226.tar.gz
samba-50be0b2c1e7e0573245e21df886ab491a0738226.tar.bz2
samba-50be0b2c1e7e0573245e21df886ab491a0738226.zip
s3: Remove superfluous ;
Guenther Autobuild-User: Günther Deschner <gd@samba.org> Autobuild-Date: Wed Feb 2 15:44:21 CET 2011 on sn-devel-104
Diffstat (limited to 'source3/modules/vfs_acl_common.c')
-rw-r--r--source3/modules/vfs_acl_common.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/modules/vfs_acl_common.c b/source3/modules/vfs_acl_common.c
index 3296ddc55c..c89ca7a806 100644
--- a/source3/modules/vfs_acl_common.c
+++ b/source3/modules/vfs_acl_common.c
@@ -86,7 +86,7 @@ static NTSTATUS parse_acl_blob(const DATA_BLOB *pblob,
if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {
DEBUG(5, ("parse_acl_blob: ndr_pull_xattr_NTACL failed: %s\n",
ndr_errstr(ndr_err)));
- return ndr_map_error2ntstatus(ndr_err);;
+ return ndr_map_error2ntstatus(ndr_err);
}
switch (xacl.version) {
@@ -153,7 +153,7 @@ static NTSTATUS create_acl_blob(const struct security_descriptor *psd,
if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {
DEBUG(5, ("create_acl_blob: ndr_push_xattr_NTACL failed: %s\n",
ndr_errstr(ndr_err)));
- return ndr_map_error2ntstatus(ndr_err);;
+ return ndr_map_error2ntstatus(ndr_err);
}
return NT_STATUS_OK;