From d4c4b3f2605071e8515c09c8e9aeba57e4d0fe98 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Sat, 9 Nov 2002 03:48:39 +0000 Subject: Fix bug found by tpot with given password server. Jeremy. (This used to be commit d46b4cb563850c77ee23b95df35a7f752a235d35) --- source3/auth/auth_domain.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/auth') diff --git a/source3/auth/auth_domain.c b/source3/auth/auth_domain.c index f58e8bac47..9d4824fbc7 100644 --- a/source3/auth/auth_domain.c +++ b/source3/auth/auth_domain.c @@ -396,7 +396,7 @@ static NTSTATUS domain_client_validate(TALLOC_CTX *mem_ctx, nt_status = find_connect_pdc(&cli, domain, setup_creds_as, sec_chan, trust_passwd, last_change_time); } else { int i; - BOOL retry = False; + BOOL retry = True; for (i = 0; !NT_STATUS_IS_OK(nt_status) && retry && (i < 3); i++) nt_status = connect_to_domain_password_server(&cli, remote_machine, setup_creds_as, sec_chan, trust_passwd, &retry); -- cgit