From ad2996e418a45c1cf4f969077ffc267de70d6866 Mon Sep 17 00:00:00 2001 From: Jim McDonough Date: Fri, 20 Feb 2004 16:00:42 +0000 Subject: [PATCH] handle both 0 and -1 as disabling reset count and lockout duration --- source/passdb/passdb.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/source/passdb/passdb.c b/source/passdb/passdb.c index 1f1b5bdae60..7c9376e045a 100644 --- a/source/passdb/passdb.c +++ b/source/passdb/passdb.c @@ -2223,8 +2223,8 @@ BOOL pdb_update_bad_password_count(SAM_ACCOUNT *sampass, BOOL *updated) } /* First, check if there is a reset time to compare */ - if (!resettime) { - DEBUG(9, ("Reset time = 0, can't reset bad pw count\n")); + if ((resettime == (uint32) -1) || (resettime == 0)) { + DEBUG(9, ("No reset time, can't reset bad pw count\n")); return True; } @@ -2262,8 +2262,8 @@ BOOL pdb_update_autolock_flag(SAM_ACCOUNT *sampass, BOOL *updated) } /* First, check if there is a duration to compare */ - if (!duration) { - DEBUG(9, ("Lockout duration = 0, can't reset autolock\n")); + if ((duration == (uint32) -1) || (duration == 0)) { + DEBUG(9, ("No reset duration, can't reset autolock\n")); return True; } -- 2.11.4.GIT