]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
r1780: Remove the UTC comment as it isn't.
authorJeremy Allison <jra@samba.org>
Thu, 12 Aug 2004 18:21:42 +0000 (18:21 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 15:52:20 +0000 (10:52 -0500)
Jeremy.

source/auth/auth_sam.c

index 0c59dbe049a4ce516d349a8d59996f1c0e76d913..4d2fb23002748a1156c06139698edd63812f79e8 100644 (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;