diff options
author | Nicholas Vinson <nvinson234@gmail.com> | 2016-04-27 07:00:42 -0700 |
---|---|---|
committer | Sam Jorna <wraeth@gentoo.org> | 2016-04-29 17:29:38 +1000 |
commit | f600ad8e74a53e37d8e1657789959523a2c6e84d (patch) | |
tree | 153ceb0e164dcef4e52c5f4838955b2e48e94147 /net-misc/connman/files | |
parent | net-misc/connman: Version bump to 1.32 (diff) | |
download | gentoo-f600ad8e74a53e37d8e1657789959523a2c6e84d.tar.gz gentoo-f600ad8e74a53e37d8e1657789959523a2c6e84d.tar.bz2 gentoo-f600ad8e74a53e37d8e1657789959523a2c6e84d.zip |
net-misc/connman remove outdated versions
Closes: https://github.com/gentoo/gentoo/pull/1373
Diffstat (limited to 'net-misc/connman/files')
-rw-r--r-- | net-misc/connman/files/connman-1.31-iptables-1.6.0.patch | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/net-misc/connman/files/connman-1.31-iptables-1.6.0.patch b/net-misc/connman/files/connman-1.31-iptables-1.6.0.patch deleted file mode 100644 index 30131e690bb1..000000000000 --- a/net-misc/connman/files/connman-1.31-iptables-1.6.0.patch +++ /dev/null @@ -1,36 +0,0 @@ -From acea08a0e4234a4c1a87bedc087c73ff36de0c7b Mon Sep 17 00:00:00 2001 -From: Wu Zheng <wu.zheng@intel.com> -Date: Thu, 28 Jan 2016 18:04:17 +0800 -Subject: iptables: Add missing function item of xtables to match iptables 1.6 - -The struct of xtables_globals has been modified in iptables 1.6. -If connman runs with iptables 1.6, it can crash. - -Program received signal SIGSEGV, Segmentation fault. -0x00000000 in ?? () -0xb7dea89c in xtables_find_target () from /usr/lib/libxtables.so.11 -0xb7deac1c in ?? () from /usr/lib/libxtables.so.11 -0xb7dea793 in xtables_find_target () from /usr/lib/libxtables.so.11 - -The the missing function item of xtables is added to xtables_globals. ---- - src/iptables.c | 3 +++ - 1 file changed, 3 insertions(+) - -diff --git a/src/iptables.c b/src/iptables.c -index bc0c763..5ef757a 100644 ---- a/src/iptables.c -+++ b/src/iptables.c -@@ -1566,6 +1566,9 @@ struct xtables_globals iptables_globals = { - .option_offset = 0, - .opts = iptables_opts, - .orig_opts = iptables_opts, -+#if XTABLES_VERSION_CODE > 10 -+ .compat_rev = xtables_compatible_revision, -+#endif - }; - - static struct xtables_target *prepare_target(struct connman_iptables *table, --- -cgit v0.12 - |