From d99c0bb1fb559a54df5b152992294fb96d061901 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Wed, 26 Feb 2014 08:12:09 +0100 Subject: libcli/security: s/remove/remove_ace/ Signed-off-by: Stefan Metzmacher Reviewed-by: Andrew Bartlett --- libcli/security/secdesc.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libcli/security/secdesc.c b/libcli/security/secdesc.c index 8570334f36..90bf4805e9 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; } -- cgit