diff options
author | Yi Zhao <yi.zhao@windriver.com> | 2016-12-29 14:11:23 +0800 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2017-01-19 09:26:15 +0100 |
commit | 807be0aeed9706f2c8b95340a9b4c391e8513200 (patch) | |
tree | 258b3cecac78704e0be6326801528ee8299b4a85 /meta-networking/recipes-protocols/quagga/files/0001-ospf6d-check-ospf6-before-using-it-in-ospf6_clean.patch | |
parent | c0ff097fae3c7ad35a7cbdf4170363875316271c (diff) | |
download | meta-openembedded-807be0aeed9706f2c8b95340a9b4c391e8513200.tar.gz |
quagga: update to 1.1.0
* remove the following 3 patches which already fixed in upstream:
0001-ospf6d-check-ospf6-before-using-it-in-ospf6_clean.patch
quagga-Avoid-duplicate-connected-address.patch
ripd-fix-two-bugs-after-received-SIGHUP.patch
* inherit pkgconfig to fix configure errors:
| configure.ac:97: error: possibly undefined macro: AC_MSG_RESULT
| If this token and others are legitimate, please use m4_pattern_allow.
| See the Autoconf documentation.
* add user quagga to quaggavty supplementary group to fix startup error:
Starting Quagga daemons: zebra
privs_init: user(quagga) is not part of vty group specified(quaggavty)
* remove babeld related code from initscript becasue it had been removed
from quagga
Signed-off-by: Yi Zhao <yi.zhao@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-networking/recipes-protocols/quagga/files/0001-ospf6d-check-ospf6-before-using-it-in-ospf6_clean.patch')
-rw-r--r-- | meta-networking/recipes-protocols/quagga/files/0001-ospf6d-check-ospf6-before-using-it-in-ospf6_clean.patch | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/meta-networking/recipes-protocols/quagga/files/0001-ospf6d-check-ospf6-before-using-it-in-ospf6_clean.patch b/meta-networking/recipes-protocols/quagga/files/0001-ospf6d-check-ospf6-before-using-it-in-ospf6_clean.patch deleted file mode 100644 index f08bb572da..0000000000 --- a/meta-networking/recipes-protocols/quagga/files/0001-ospf6d-check-ospf6-before-using-it-in-ospf6_clean.patch +++ /dev/null | |||
@@ -1,28 +0,0 @@ | |||
1 | Upstream-Status: Pending | ||
2 | |||
3 | Subject: ospf6d: check ospf6 before using it in ospf6_clean | ||
4 | |||
5 | The ospf6 variable might be 'NULL' causing segment fault error. | ||
6 | Check it before referencing it. | ||
7 | |||
8 | Signed-off-by: Chen Qi <Qi.Chen@windriver.com> | ||
9 | --- | ||
10 | ospf6d/ospf6d.c | 2 ++ | ||
11 | 1 file changed, 2 insertions(+) | ||
12 | |||
13 | diff --git a/ospf6d/ospf6d.c b/ospf6d/ospf6d.c | ||
14 | index 3cdd5c1..e3bf1af 100644 | ||
15 | --- a/ospf6d/ospf6d.c | ||
16 | +++ b/ospf6d/ospf6d.c | ||
17 | @@ -1892,6 +1892,8 @@ ospf6_init (void) | ||
18 | void | ||
19 | ospf6_clean (void) | ||
20 | { | ||
21 | + if (ospf6 == NULL) | ||
22 | + return; | ||
23 | if (ospf6->route_table) | ||
24 | ospf6_route_remove_all (ospf6->route_table); | ||
25 | if (ospf6->brouter_table) | ||
26 | -- | ||
27 | 1.9.1 | ||
28 | |||