mirror of
https://github.com/samba-team/samba.git
synced 2025-01-13 13:18:06 +03:00
torture-samr: Set lockout_seconds to 60 for samba3
The source3 account policy code deals with lockouts in terms of minutes, not nanoseconds, so we have to lock out for at least 60 seconds otherwise we do not wait long enough. Andrew Bartlett. Change-Id: I2b30d1c0d9b020b3aba6ed3343361e9a576b7d9a Signed-off-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Stefan Metzmacher <metze@samba.org>
This commit is contained in:
parent
44a624d6ce
commit
5a2eae4229
@ -4103,6 +4103,10 @@ static bool test_Password_lockout(struct dcerpc_pipe *p,
|
||||
uint64_t delta_time_factor = 10 * 1000 * 1000;
|
||||
struct dcerpc_binding_handle *b = p->binding_handle;
|
||||
|
||||
if (torture_setting_bool(tctx, "samba3", false)) {
|
||||
lockout_seconds = 60;
|
||||
}
|
||||
|
||||
torture_comment(tctx, "\nTesting account lockout: %s\n", comment);
|
||||
|
||||
/* set policies */
|
||||
|
Loading…
Reference in New Issue
Block a user