From 87bbe1be5f79107cb96227510588f222b7061c92 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Thu, 10 Nov 2011 19:57:05 +1100 Subject: s3-net Do not look for a local SID when we are a DC If we are actually a DC, then the only SID we have is the domain SID, and looking for it under the local name fails if we are a Samba4 AD DC. Andrew Bartlett --- source3/utils/net.c | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) (limited to 'source3/utils/net.c') diff --git a/source3/utils/net.c b/source3/utils/net.c index d05f6143e1..ce9e7c57b2 100644 --- a/source3/utils/net.c +++ b/source3/utils/net.c @@ -346,14 +346,15 @@ static int net_getdomainsid(struct net_context *c, int argc, const char **argv) /* Generate one, if it doesn't exist */ get_global_sam_sid(); - if (!secrets_fetch_domain_sid(lp_netbios_name(), &domain_sid)) { - d_fprintf(stderr, _("Could not fetch local SID\n")); - return 1; + if (!IS_DC) { + if (!secrets_fetch_domain_sid(lp_netbios_name(), &domain_sid)) { + d_fprintf(stderr, _("Could not fetch local SID\n")); + return 1; + } + sid_to_fstring(sid_str, &domain_sid); + d_printf(_("SID for local machine %s is: %s\n"), + lp_netbios_name(), sid_str); } - sid_to_fstring(sid_str, &domain_sid); - d_printf(_("SID for local machine %s is: %s\n"), - lp_netbios_name(), sid_str); - if (!secrets_fetch_domain_sid(c->opt_workgroup, &domain_sid)) { d_fprintf(stderr, _("Could not fetch domain SID\n")); return 1; -- cgit