diff options
author | Volker Lendecke <vlendec@samba.org> | 2007-01-08 16:52:58 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:16:58 -0500 |
commit | 5740f6910e4a14b57adf5f83e758e16165a7b066 (patch) | |
tree | ed5747f0dc66e8ee38e0958be22f6b5fd4533125 /source3/passdb | |
parent | d10af0222623c3c76b19fe872adb6de1eeac6e1c (diff) | |
download | samba-5740f6910e4a14b57adf5f83e758e16165a7b066.tar.gz |
r20614: Dummy-checkin to trigger the build
(This used to be commit 7e444e1612fa49f7db4de3256e6c67025db28806)
Diffstat (limited to 'source3/passdb')
-rw-r--r-- | source3/passdb/passdb.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/source3/passdb/passdb.c b/source3/passdb/passdb.c index ae7f57fb5a1..310ab50d14b 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))) { |