summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Maier <tamiko@gentoo.org>2016-09-29 08:53:08 -0500
committerMatthias Maier <tamiko@gentoo.org>2016-09-29 08:53:08 -0500
commit19e332c3aca10d0c1693f50a4811bc07cef9fab6 (patch)
treea61aa1977fd7293f8c3bbbc39ab4a3bae081bdfe /net-firewall/firewalld/files
parentvirtual/perl-threads-shared: ia64 stable wrt bug #567482 (diff)
downloadgentoo-19e332c3aca10d0c1693f50a4811bc07cef9fab6.tar.gz
gentoo-19e332c3aca10d0c1693f50a4811bc07cef9fab6.tar.bz2
gentoo-19e332c3aca10d0c1693f50a4811bc07cef9fab6.zip
net-firewall/firewalld: drop vulnerable, bug #591458
Package-Manager: portage-2.3.0
Diffstat (limited to 'net-firewall/firewalld/files')
-rw-r--r--net-firewall/firewalld/files/firewalld-0.3.10-py3k-compat.patch24
1 files changed, 0 insertions, 24 deletions
diff --git a/net-firewall/firewalld/files/firewalld-0.3.10-py3k-compat.patch b/net-firewall/firewalld/files/firewalld-0.3.10-py3k-compat.patch
deleted file mode 100644
index e91590f1cff6..000000000000
--- a/net-firewall/firewalld/files/firewalld-0.3.10-py3k-compat.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-diff --git a/src/firewall/core/io/direct.py b/src/firewall/core/io/direct.py
-index b698e4c..6b80201 100644
---- a/src/firewall/core/io/direct.py
-+++ b/src/firewall/core/io/direct.py
-@@ -295,8 +295,8 @@ class Direct(IO_Object):
- if len(self.passthroughs[ipv]) == 0:
- del self.passthroughs[ipv]
- else:
-- raise ValueError, "Passthrough '%s' for ipv '%s'" % \
-- ("',".join(args), ipv) + "not in list"
-+ raise ValueError("Passthrough '%s' for ipv '%s'" % \
-+ ("',".join(args), ipv) + "not in list")
-
- def query_passthrough(self, ipv, args):
- return (ipv in self.passthroughs and args in self.passthroughs[ipv])
-@@ -305,7 +305,7 @@ class Direct(IO_Object):
- if ipv in self.passthroughs:
- return self.passthroughs[ipv]
- else:
-- raise ValueError, "No passthroughs for ipv '%s'" % (ipv)
-+ raise ValueError("No passthroughs for ipv '%s'" % (ipv))
-
- def get_all_passthroughs(self):
- return self.passthroughs