diff options
author | Donald Sharp <sharpd@nvidia.com> | 2021-02-08 17:39:30 +0100 |
---|---|---|
committer | Donald Sharp <sharpd@nvidia.com> | 2021-05-04 22:23:37 +0200 |
commit | 5463d7c37440bb6d585f9af04ac6ad11b2028a9c (patch) | |
tree | cbac0337f0946af98463c36f055a0aabdb6a1db1 /eigrpd/eigrp_main.c | |
parent | lib, ripd, ripngd, vtysh: Move distribute list to `correct` spot (diff) | |
download | frr-5463d7c37440bb6d585f9af04ac6ad11b2028a9c.tar.xz frr-5463d7c37440bb6d585f9af04ac6ad11b2028a9c.zip |
eigrpd: fix `distribute-list...` command for EIGRP
The distribute-list command was being registered but never
setup properly in EIGRP. Put it into place.
Signed-off-by: Donald Sharp <sharpd@nvidia.com>
Diffstat (limited to 'eigrpd/eigrp_main.c')
-rw-r--r-- | eigrpd/eigrp_main.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/eigrpd/eigrp_main.c b/eigrpd/eigrp_main.c index 0ed7e9496..b775c841f 100644 --- a/eigrpd/eigrp_main.c +++ b/eigrpd/eigrp_main.c @@ -227,8 +227,6 @@ int main(int argc, char **argv, char **envp) route_map_add_hook (eigrp_rmap_update); route_map_delete_hook (eigrp_rmap_update);*/ /*if_rmap_init (EIGRP_NODE); */ - /* Distribute list install. */ - distribute_list_init(EIGRP_NODE); frr_config_fork(); frr_run(master); |