From: <ssm...@us...> - 2007-05-09 14:50:24
|
Revision: 2432 http://svn.sourceforge.net/selinux/?rev=2432&view=rev Author: ssmalley Date: 2007-05-09 07:50:22 -0700 (Wed, 09 May 2007) Log Message: ----------- updated policycoreutils to version 1.34.10 Modified Paths: -------------- branches/stable/1_0/policycoreutils/ChangeLog branches/stable/1_0/policycoreutils/VERSION branches/stable/1_0/policycoreutils/scripts/genhomedircon Modified: branches/stable/1_0/policycoreutils/ChangeLog =================================================================== --- branches/stable/1_0/policycoreutils/ChangeLog 2007-05-09 14:47:47 UTC (rev 2431) +++ branches/stable/1_0/policycoreutils/ChangeLog 2007-05-09 14:50:22 UTC (rev 2432) @@ -1,3 +1,6 @@ +1.34.10 2007-05-09 + * Merged genhomedircon fix to find conflicting directories correctly from Dan Walsh. + 1.34.9 2007-05-03 * Merged support for modifying the prefix via semanage from Dan Walsh. Modified: branches/stable/1_0/policycoreutils/VERSION =================================================================== --- branches/stable/1_0/policycoreutils/VERSION 2007-05-09 14:47:47 UTC (rev 2431) +++ branches/stable/1_0/policycoreutils/VERSION 2007-05-09 14:50:22 UTC (rev 2432) @@ -1 +1 @@ -1.34.9 +1.34.10 Modified: branches/stable/1_0/policycoreutils/scripts/genhomedircon =================================================================== --- branches/stable/1_0/policycoreutils/scripts/genhomedircon 2007-05-09 14:47:47 UTC (rev 2431) +++ branches/stable/1_0/policycoreutils/scripts/genhomedircon 2007-05-09 14:50:22 UTC (rev 2432) @@ -302,7 +302,7 @@ regex = re.sub("\(\/\.\*\)\?", "", regex) regex = regex + "/*$" - if re.search(home, regex, 0): + if re.search(regex,home, 0): return 1 except: continue This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |