summaryrefslogtreecommitdiffstats
path: root/source/auth
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2004-08-12 18:21:42 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 10:52:20 -0500
commitf454821ff5545a34704b149514da9064f73ca3ad (patch)
tree3a9d5e57c20312a48a12e3630faab289432b1de9 /source/auth
parent9ce273ed662bd34987eaeedeeeb7cb1c99cd50a4 (diff)
downloadsamba-f454821ff5545a34704b149514da9064f73ca3ad.tar.gz
samba-f454821ff5545a34704b149514da9064f73ca3ad.tar.xz
samba-f454821ff5545a34704b149514da9064f73ca3ad.zip
r1780: Remove the UTC comment as it isn't.
Jeremy.
Diffstat (limited to 'source/auth')
-rw-r--r--source/auth/auth_sam.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/auth/auth_sam.c b/source/auth/auth_sam.c
index 0c59dbe049a..4d2fb230027 100644
--- a/source/auth/auth_sam.c
+++ b/source/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;