From 5740f6910e4a14b57adf5f83e758e16165a7b066 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Mon, 8 Jan 2007 16:52:58 +0000 Subject: r20614: Dummy-checkin to trigger the build (This used to be commit 7e444e1612fa49f7db4de3256e6c67025db28806) --- source3/passdb/passdb.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/source3/passdb/passdb.c b/source3/passdb/passdb.c index ae7f57fb5a..310ab50d14 100644 --- a/source3/passdb/passdb.c +++ b/source3/passdb/passdb.c @@ -1445,10 +1445,11 @@ BOOL pdb_update_autolock_flag(struct samu *sampass, BOOL *updated) pdb_get_username(sampass), (uint32)LastBadPassword, duration*60, (uint32)time(NULL))); if (LastBadPassword == (time_t)0) { - DEBUG(1,("pdb_update_autolock_flag: Account %s administratively locked out with no \ -bad password time. Leaving locked out.\n", - pdb_get_username(sampass) )); - return True; + DEBUG(1,("pdb_update_autolock_flag: Account %s " + "administratively locked out with no bad password " + "time. Leaving locked out.\n", + pdb_get_username(sampass) )); + return True; } if ((time(NULL) > (LastBadPassword + (time_t) duration * 60))) { -- cgit