diff options
author | Günther Deschner <gd@samba.org> | 2006-09-19 17:29:31 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:00:47 -0500 |
commit | d1e28fa76d14d0628f58cca8a6f6ca878851652f (patch) | |
tree | b2c02cc18a92a9156e006eb119c1297c66ea8713 /source3/rpc_server | |
parent | d2106c1a3cf7b8d5b0a894b5fb7702414001b014 (diff) | |
download | samba-d1e28fa76d14d0628f58cca8a6f6ca878851652f.tar.gz samba-d1e28fa76d14d0628f58cca8a6f6ca878851652f.tar.bz2 samba-d1e28fa76d14d0628f58cca8a6f6ca878851652f.zip |
r18680: Fix last struct uuids (in uncommented code).
Guenther
(This used to be commit 41c79ee5accb13f73d1f65b303d723ca2ff49933)
Diffstat (limited to 'source3/rpc_server')
-rw-r--r-- | source3/rpc_server/srv_lsa_nt.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/rpc_server/srv_lsa_nt.c b/source3/rpc_server/srv_lsa_nt.c index f60d352942..9e1e9a397a 100644 --- a/source3/rpc_server/srv_lsa_nt.c +++ b/source3/rpc_server/srv_lsa_nt.c @@ -487,7 +487,7 @@ static NTSTATUS lsa_get_generic_sd(TALLOC_CTX *mem_ctx, SEC_DESC **sd, size_t *s static void init_dns_dom_info(LSA_DNS_DOM_INFO *r_l, const char *nb_name, const char *dns_name, const char *forest_name, - struct uuid *dom_guid, DOM_SID *dom_sid) + struct GUID *dom_guid, DOM_SID *dom_sid) { if (nb_name && *nb_name) { init_unistr2(&r_l->uni_nb_dom_name, nb_name, UNI_FLAGS_NONE); @@ -512,7 +512,7 @@ static void init_dns_dom_info(LSA_DNS_DOM_INFO *r_l, const char *nb_name, /* how do we init the guid ? probably should write an init fn */ if (dom_guid) { - memcpy(&r_l->dom_guid, dom_guid, sizeof(struct uuid)); + memcpy(&r_l->dom_guid, dom_guid, sizeof(struct GUID)); } if (dom_sid) { @@ -1879,7 +1879,7 @@ NTSTATUS _lsa_query_info2(pipes_struct *p, LSA_Q_QUERY_INFO2 *q_u, LSA_R_QUERY_I char *dns_name = NULL; char *forest_name = NULL; DOM_SID *sid = NULL; - struct uuid guid; + struct GUID guid; fstring dnsdomname; ZERO_STRUCT(guid); |