From d44a7379323cc44f49ac1f5e57ce1b8a9d6c3f31 Mon Sep 17 00:00:00 2001 From: Gerald Carter Date: Tue, 22 Mar 2005 16:35:15 +0000 Subject: r5955: BUG 2517: use the realm from smb.conf for 'net ads info' when 'disable netbios = yes' (This used to be commit 77734120d30c64941e2046574c81653c5bca4220) --- source3/utils/net_ads.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'source3/utils') diff --git a/source3/utils/net_ads.c b/source3/utils/net_ads.c index 72e8f70a7d..9c00f05bfb 100644 --- a/source3/utils/net_ads.c +++ b/source3/utils/net_ads.c @@ -94,7 +94,12 @@ static int net_ads_info(int argc, const char **argv) { ADS_STRUCT *ads; - ads = ads_init(NULL, opt_target_workgroup, opt_host); + /* if netbios is disabled we have to default to the realm from smb.conf */ + + if ( lp_disable_netbios() && *lp_realm() ) + ads = ads_init(lp_realm(), opt_target_workgroup, opt_host); + else + ads = ads_init(NULL, opt_target_workgroup, opt_host); if (ads) { ads->auth.flags |= ADS_AUTH_NO_BIND; -- cgit