From 77734120d30c64941e2046574c81653c5bca4220 Mon Sep 17 00:00:00 2001 From: Gerald Carter Date: Tue, 22 Mar 2005 16:35:15 +0000 Subject: [PATCH] r5955: BUG 2517: use the realm from smb.conf for 'net ads info' when 'disable netbios = yes' --- source/utils/net_ads.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/source/utils/net_ads.c b/source/utils/net_ads.c index 72e8f70a7d8..9c00f05bfbb 100644 --- a/source/utils/net_ads.c +++ b/source/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; -- 2.47.3