1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00

r1780: Remove the UTC comment as it isn't.

Jeremy.
(This used to be commit f454821ff5)
This commit is contained in:
Jeremy Allison 2004-08-12 18:21:42 +00:00 committed by Gerald (Jerry) Carter
parent a8dca8b4b6
commit efeeb48740

View File

@ -92,12 +92,12 @@ static BOOL logon_hours_ok(SAM_ACCOUNT *sampass)
bitmask = 1 << (bitpos % 8);
if (! (hours[bitpos/8] & bitmask)) {
DEBUG(1,("logon_hours_ok: Account for user %s not allowed to logon at this time (UTC %s).\n",
DEBUG(1,("logon_hours_ok: Account for user %s not allowed to logon at this time (%s).\n",
pdb_get_username(sampass), asctime(utctime) ));
return False;
}
DEBUG(5,("logon_hours_ok: user %s allowed to logon at this time (UTC %s)\n",
DEBUG(5,("logon_hours_ok: user %s allowed to logon at this time (%s)\n",
pdb_get_username(sampass), asctime(utctime) ));
return True;