-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 This patch looks good to me. acked. -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.13 (GNU/Linux) Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/ iEYEARECAAYFAlD+px4ACgkQrlYvE4MpobMkIwCeIpWL/9GSGWodh3pploRgdbeO wucAoIJLVdLZfB0CdL48Bdoa5MUo6/eq =NqHC -----END PGP SIGNATURE-----
>From 02ee51b79415da806341aad52bf94e453d5e57b1 Mon Sep 17 00:00:00 2001 From: rhatdan <dwalsh@xxxxxxxxxx> Date: Tue, 16 Oct 2012 14:57:29 -0400 Subject: [PATCH 45/84] sepolgen: audit.py: Handle times in foreign locals for audit2allow -b Signed-off-by: Eric Paris <eparis@xxxxxxxxxx> --- sepolgen/src/sepolgen/audit.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/sepolgen/src/sepolgen/audit.py b/sepolgen/src/sepolgen/audit.py index 73c60f6..d636091 100644 --- a/sepolgen/src/sepolgen/audit.py +++ b/sepolgen/src/sepolgen/audit.py @@ -38,8 +38,7 @@ def get_audit_boot_msgs(): off=float(fd.read().split()[0]) fd.close s = time.localtime(time.time() - off) - date = time.strftime("%D/%Y", s).split("/") - bootdate="%s/%s/%s" % (date[0], date[1], date[3]) + bootdate = time.strftime("%x", s) boottime = time.strftime("%X", s) output = subprocess.Popen(["/sbin/ausearch", "-m", "AVC,USER_AVC,MAC_POLICY_LOAD,DAEMON_START,SELINUX_ERR", "-ts", bootdate, boottime], stdout=subprocess.PIPE).communicate()[0] -- 1.8.1