diff options
author | Andrew Bartlett <abartlet@samba.org> | 2010-12-04 17:02:49 +1100 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2010-12-09 18:01:56 +1100 |
commit | 22d67758efd20e62d6050fd10c8b922db75747c9 (patch) | |
tree | 676db6ea531de77b3ecd7a9cf88db0bef111e269 /source4/torture | |
parent | 54ee213fa5da6b138ab367b537c5e084edf35ff2 (diff) | |
download | samba-22d67758efd20e62d6050fd10c8b922db75747c9.tar.gz samba-22d67758efd20e62d6050fd10c8b922db75747c9.tar.bz2 samba-22d67758efd20e62d6050fd10c8b922db75747c9.zip |
s4-tests Workaround new default of 'client ntlmv2 auth = yes' in tests
The new default breaks some tests that were assuming LM or NTLM auth
Andrew Bartlett
Diffstat (limited to 'source4/torture')
-rw-r--r-- | source4/torture/rpc/netlogon.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/torture/rpc/netlogon.c b/source4/torture/rpc/netlogon.c index b1739a015c..457d38e82d 100644 --- a/source4/torture/rpc/netlogon.c +++ b/source4/torture/rpc/netlogon.c @@ -702,7 +702,7 @@ static bool test_netlogon_ops_args(struct dcerpc_pipe *p, struct torture_context flags |= CLI_CRED_LANMAN_AUTH; } - if (lpcfg_client_ntlmv2_auth(tctx->lp_ctx)) { + if (lpcfg_client_ntlmv2_auth(tctx->lp_ctx) && !null_domain) { flags |= CLI_CRED_NTLMv2_AUTH; } |