-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 We need filename transitions to supported files with " " and ":" in them in Fedora This patch looks good to me. acked. -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.15 (GNU/Linux) Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/ iEYEARECAAYFAlJpJEgACgkQrlYvE4MpobNM9ACcDv6MGpOyTML+Zx1hoZ+fuo/e QeAAoK+VjWPWIk6yZzOg+OQ/wrL/JggY =z8eL -----END PGP SIGNATURE-----
>From 37073091884931e148f7864b2e191436ab7a630f Mon Sep 17 00:00:00 2001 From: Dan Walsh <dwalsh@xxxxxxxxxx> Date: Wed, 9 Oct 2013 14:27:20 -0400 Subject: [PATCH 04/74] Allow " " and ":" in file name transtions We have added a couple of file name transtitions that required a space and a colon. --- checkpolicy/policy_scan.l | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/checkpolicy/policy_scan.l b/checkpolicy/policy_scan.l index bba7667..ab046cc 100644 --- a/checkpolicy/policy_scan.l +++ b/checkpolicy/policy_scan.l @@ -240,7 +240,7 @@ HIGH { return(HIGH); } low | LOW { return(LOW); } "/"({alnum}|[_\.\-/])* { return(PATH); } -\"({alnum}|[_\.\-\+\~])+\" { return(FILENAME); } +\"({alnum}|[_\.\-\+\~\: ])+\" { return(FILENAME); } {letter}({alnum}|[_\-])*([\.]?({alnum}|[_\-]))* { return(IDENTIFIER); } {alnum}*{letter}{alnum}* { return(FILESYSTEM); } {digit}+|0x{hexval}+ { return(NUMBER); } -- 1.8.3.1