summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--source3/auth/auth_sam.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/auth/auth_sam.c b/source3/auth/auth_sam.c
index 0c59dbe049..4d2fb23002 100644
--- a/source3/auth/auth_sam.c
+++ b/source3/auth/auth_sam.c
@@ -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;