net: Use true/false instead of True/False.
[kai/samba.git] / source3 / utils / net_rpc_rights.c
index 23ce467095950b3ac40ef57f9944604fa9388183..7a969a7a634844e9ba5253fc29b3f21903fc2e25 100644 (file)
@@ -33,7 +33,7 @@ static NTSTATUS sid_to_name(struct rpc_pipe_client *pipe_hnd,
        NTSTATUS result;
        char **domains = NULL, **names = NULL;
 
-       result = rpccli_lsa_open_policy(pipe_hnd, mem_ctx, True,
+       result = rpccli_lsa_open_policy(pipe_hnd, mem_ctx, true,
                SEC_RIGHTS_MAXIMUM_ALLOWED, &pol);
 
        if ( !NT_STATUS_IS_OK(result) )
@@ -69,7 +69,7 @@ static NTSTATUS name_to_sid(struct rpc_pipe_client *pipe_hnd,
                return NT_STATUS_OK;
        }
 
-       result = rpccli_lsa_open_policy(pipe_hnd, mem_ctx, True,
+       result = rpccli_lsa_open_policy(pipe_hnd, mem_ctx, true,
                SEC_RIGHTS_MAXIMUM_ALLOWED, &pol);
 
        if ( !NT_STATUS_IS_OK(result) )
@@ -327,7 +327,7 @@ static NTSTATUS rpc_rights_list_internal(struct net_context *c,
        uint16 lang_id_sys = 0;
        uint16 lang_id_desc;
 
-       result = rpccli_lsa_open_policy(pipe_hnd, mem_ctx, True,
+       result = rpccli_lsa_open_policy(pipe_hnd, mem_ctx, true,
                SEC_RIGHTS_MAXIMUM_ALLOWED, &pol);
 
        if ( !NT_STATUS_IS_OK(result) )
@@ -452,7 +452,7 @@ static NTSTATUS rpc_rights_grant_internal(struct net_context *c,
        if (!NT_STATUS_IS_OK(result))
                return result;
 
-       result = rpccli_lsa_open_policy2(pipe_hnd, mem_ctx, True,
+       result = rpccli_lsa_open_policy2(pipe_hnd, mem_ctx, true,
                                     SEC_RIGHTS_MAXIMUM_ALLOWED,
                                     &dom_pol);
 
@@ -518,7 +518,7 @@ static NTSTATUS rpc_rights_revoke_internal(struct net_context *c,
        if (!NT_STATUS_IS_OK(result))
                return result;
 
-       result = rpccli_lsa_open_policy2(pipe_hnd, mem_ctx, True,
+       result = rpccli_lsa_open_policy2(pipe_hnd, mem_ctx, true,
                                     SEC_RIGHTS_MAXIMUM_ALLOWED,
                                     &dom_pol);