diff options
author | Stefan Metzmacher <metze@samba.org> | 2014-02-26 08:12:09 +0100 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2014-04-02 09:03:42 +0200 |
commit | d99c0bb1fb559a54df5b152992294fb96d061901 (patch) | |
tree | 870803529bb2a7063c7a398399ff748f27490b06 /libcli | |
parent | f03653e39aa01dea37a237996a2660206b0b01d4 (diff) | |
download | samba-d99c0bb1fb559a54df5b152992294fb96d061901.tar.gz samba-d99c0bb1fb559a54df5b152992294fb96d061901.tar.xz samba-d99c0bb1fb559a54df5b152992294fb96d061901.zip |
libcli/security: s/remove/remove_ace/
Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'libcli')
-rw-r--r-- | libcli/security/secdesc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libcli/security/secdesc.c b/libcli/security/secdesc.c index 8570334f36c..90bf4805e90 100644 --- a/libcli/security/secdesc.c +++ b/libcli/security/secdesc.c @@ -695,7 +695,7 @@ NTSTATUS se_create_child_secdesc(TALLOC_CTX *ctx, for (i=1; i < new_ace_list_ndx;) { struct security_ace *ai = &new_ace_list[i]; unsigned int remaining, j; - bool remove = false; + bool remove_ace = false; for (j=0; j < i; j++) { struct security_ace *aj = &new_ace_list[j]; @@ -704,11 +704,11 @@ NTSTATUS se_create_child_secdesc(TALLOC_CTX *ctx, continue; } - remove = true; + remove_ace = true; break; } - if (!remove) { + if (!remove_ace) { i++; continue; } |