1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-02 09:47:23 +03:00

One more minor change to the format of a DEBUG message. I broke up a

very long output line in become_domain_master_query_success().
Chris -)-----
(This used to be commit 9b5d431661c55056c31bedf9ef3900f27e1c5292)
This commit is contained in:
Christopher R. Hertel 1998-08-03 18:33:49 +00:00
parent f1abfacd4d
commit 103857e8e3

View File

@ -317,10 +317,15 @@ static void become_domain_master_query_success(struct subnet_record *subrec,
if(ismyip(ip) || ip_equal(allones_ip, ip) || ip_equal(ipzero, ip))
{
DEBUG(3,("become_domain_master_query_success: Our address (%s) returned \
in query for name %s (domain master browser name) on subnet %s. \
Continuing with domain master code.\n",
inet_ntoa(ip), namestr(nmbname), subrec->subnet_name));
if( DEBUGLVL( 3 ) )
{
dbgtext( "become_domain_master_query_success():\n" );
dbgtext( "Our address (%s) ", inet_ntoa(ip) );
dbgtext( "returned in query for name %s ", namestr(nmbname) );
dbgtext( "(domain master browser name) " );
dbgtext( "on subnet %s.\n", subrec->subnet_name );
dbgtext( "Continuing with domain master code.\n" );
}
become_domain_master_stage1(subrec, nmbname->name);
}