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_ads.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/utils/net_ads.c') diff --git a/source3/utils/net_ads.c b/source3/utils/net_ads.c index 2777772711c..fa6cf8309b5 100644 --- a/source3/utils/net_ads.c +++ b/source3/utils/net_ads.c @@ -539,7 +539,7 @@ static int ads_user_info(struct net_context *c, int argc, const char **argv) char **grouplist; char *primary_group; char *escaped_user; - DOM_SID primary_group_sid; + struct dom_sid primary_group_sid; uint32_t group_rid; enum SID_NAME_USE type; @@ -2181,7 +2181,7 @@ static int net_ads_sid(struct net_context *c, int argc, const char **argv) const char *sid_string; const char **attrs; LDAPMessage *res = NULL; - DOM_SID sid; + struct dom_sid sid; if (argc < 1 || c->display_usage) { return net_ads_sid_usage(c, argc, argv); -- cgit v1.2.1