diff options
| author | Jafar Al-Gharaibeh <Jafaral@users.noreply.github.com> | 2018-02-06 14:33:10 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-02-06 14:33:10 -0600 |
| commit | 90989cfccffce8e593a9c7e77a37c8478bc531ee (patch) | |
| tree | fdf140e8df12ad18ec2b953a0ec5166376d71abf /ospf6d/ospf6_main.c | |
| parent | 91d03d5cdcbe67bc225a0028bc8ff5374b59a95a (diff) | |
| parent | 856ae1eb2e4a1d378b2b3eb2894f4fb1ef0480c8 (diff) | |
Merge pull request #1677 from chiragshah6/ospfv3_dev
ospf6d: Fix redistribute [connected] with route-map
Diffstat (limited to 'ospf6d/ospf6_main.c')
| -rw-r--r-- | ospf6d/ospf6_main.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/ospf6d/ospf6_main.c b/ospf6d/ospf6_main.c index 9a6729ee2a..88f03d8f64 100644 --- a/ospf6d/ospf6_main.c +++ b/ospf6d/ospf6_main.c @@ -97,6 +97,14 @@ static void __attribute__((noreturn)) ospf6_exit(int status) ospf6_asbr_terminate(); ospf6_lsa_terminate(); + /* reverse access_list_init */ + access_list_reset(); + + /* reverse prefix_list_init */ + prefix_list_add_hook(NULL); + prefix_list_delete_hook(NULL); + prefix_list_reset(); + vrf_terminate(); if (zclient) { |
