From: Gerald Carter Date: Tue, 22 Mar 2005 16:35:15 +0000 (+0000) Subject: r5955: BUG 2517: use the realm from smb.conf for 'net ads info' when 'disable netbios... X-Git-Tag: samba-misc-tags/initial-v3-0-unstable~5073 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=77734120d30c64941e2046574c81653c5bca4220;p=thirdparty%2Fsamba.git r5955: BUG 2517: use the realm from smb.conf for 'net ads info' when 'disable netbios = yes' --- 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;