From 2b27c93a9a8471693d7dcb5fdbe8afe65b22ff66 Mon Sep 17 00:00:00 2001 From: Gerald Carter Date: Fri, 8 Sep 2006 14:28:06 +0000 Subject: r18271: Big change: * autogenerate lsa ndr code * rename 'enum SID_NAME_USE' to 'enum lsa_SidType' * merge a log more security descriptor functions from gen_ndr/ndr_security.c in SAMBA_4_0 The most embarassing thing is the "#define strlen_m strlen" We need a real implementation in SAMBA_3_0 which I'll work on after this code is in. (This used to be commit 3da9f80c28b1e75ef6d46d38fbb81ade6b9fa951) --- source3/libmsrpc/cac_lsarpc.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'source3/libmsrpc') diff --git a/source3/libmsrpc/cac_lsarpc.c b/source3/libmsrpc/cac_lsarpc.c index 72c429e724..5ff49b58d1 100644 --- a/source3/libmsrpc/cac_lsarpc.c +++ b/source3/libmsrpc/cac_lsarpc.c @@ -144,7 +144,7 @@ int cac_LsaGetNamesFromSids(CacServerHandle *hnd, TALLOC_CTX *mem_ctx, struct Ls /*buffers for outputs*/ char **domains = NULL; char **names = NULL; - enum SID_NAME_USE *types = NULL; + enum lsa_SidType *types = NULL; CacSidInfo *sids_out = NULL; DOM_SID *unknown_out = NULL; @@ -267,7 +267,7 @@ int cac_LsaGetSidsFromNames(CacServerHandle *hnd, TALLOC_CTX *mem_ctx, struct Ls /*buffers for outputs*/ DOM_SID *sids = NULL; - enum SID_NAME_USE *types = NULL; + enum lsa_SidType *types = NULL; CacSidInfo *sids_out = NULL; char **unknown_out = NULL; @@ -579,7 +579,7 @@ int cac_LsaEnumAccountRights(CacServerHandle *hnd, TALLOC_CTX *mem_ctx, struct L if(op->in.name && !op->in.sid) { DOM_SID *user_sid = NULL; - enum SID_NAME_USE *type; + enum lsa_SidType *type; /*lookup the SID*/ hnd->status = rpccli_lsa_lookup_names( pipe_hnd, mem_ctx, op->in.pol, 1, (const char **)&(op->in.name), NULL, &user_sid, &type); @@ -806,7 +806,7 @@ int cac_LsaOpenAccount(CacServerHandle *hnd, TALLOC_CTX *mem_ctx, struct LsaOpen /*look up the user's SID if we have to*/ if(op->in.name && !op->in.sid) { DOM_SID *user_sid = NULL; - enum SID_NAME_USE *type; + enum lsa_SidType *type; /*lookup the SID*/ hnd->status = rpccli_lsa_lookup_names( pipe_hnd, mem_ctx, op->in.pol, 1, (const char **)&(op->in.name), NULL, &user_sid, &type); @@ -840,7 +840,7 @@ int cac_LsaAddPrivileges(CacServerHandle *hnd, TALLOC_CTX *mem_ctx, struct LsaAd struct rpc_pipe_client *pipe_hnd = NULL; DOM_SID *user_sid = NULL; - enum SID_NAME_USE *type = NULL; + enum lsa_SidType *type = NULL; if(!hnd) { return CAC_FAILURE; @@ -890,7 +890,7 @@ int cac_LsaRemovePrivileges(CacServerHandle *hnd, TALLOC_CTX *mem_ctx, struct Ls struct rpc_pipe_client *pipe_hnd = NULL; DOM_SID *user_sid = NULL; - enum SID_NAME_USE *type = NULL; + enum lsa_SidType *type = NULL; if(!hnd) { return CAC_FAILURE; @@ -940,7 +940,7 @@ int cac_LsaClearPrivileges(CacServerHandle *hnd, TALLOC_CTX *mem_ctx, struct Lsa struct rpc_pipe_client *pipe_hnd = NULL; DOM_SID *user_sid = NULL; - enum SID_NAME_USE *type = NULL; + enum lsa_SidType *type = NULL; if(!hnd) { return CAC_FAILURE; @@ -990,7 +990,7 @@ int cac_LsaSetPrivileges(CacServerHandle *hnd, TALLOC_CTX *mem_ctx, struct LsaAd struct rpc_pipe_client *pipe_hnd = NULL; DOM_SID *user_sid = NULL; - enum SID_NAME_USE *type = NULL; + enum lsa_SidType *type = NULL; if(!hnd) { return CAC_FAILURE; -- cgit