From cba7f8b8273e661d3c43652900d93e5a8eab4e5f Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Fri, 21 May 2010 11:25:01 +1000 Subject: s3:dom_sid Global replace of DOM_SID with struct dom_sid MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This matches the structure that new code is being written to, and removes one more of the old-style named structures, and the need to know that is is just an alias for struct dom_sid. Andrew Bartlett Signed-off-by: Günther Deschner --- source3/utils/net.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/utils/net.h') diff --git a/source3/utils/net.h b/source3/utils/net.h index 91e8c53099..21f393b243 100644 --- a/source3/utils/net.h +++ b/source3/utils/net.h @@ -109,7 +109,7 @@ struct functable { }; typedef NTSTATUS (*rpc_command_fn)(struct net_context *c, - const DOM_SID *, + const struct dom_sid *, const char *, struct cli_state *cli, struct rpc_pipe_client *, @@ -129,7 +129,7 @@ typedef struct copy_clistate { struct rpc_sh_ctx { struct cli_state *cli; - DOM_SID *domain_sid; + struct dom_sid *domain_sid; const char *domain_name; const char *whoami; -- cgit