diff options
author | hasso <hasso> | 2003-05-24 21:41:49 +0000 |
---|---|---|
committer | hasso <hasso> | 2003-05-24 21:41:49 +0000 |
commit | ecd14e7e0f88f528099dbeb31f100be9b357eca0 (patch) | |
tree | 9a9e976337b33725eb70fd8d1f1e3b1119b9d6dd /ripngd/ripngd.c | |
parent | 1d426368205cda3bae42d65f8a341cf3f6bcdab3 (diff) | |
download | quagga-ecd14e7e0f88f528099dbeb31f100be9b357eca0.tar.bz2 quagga-ecd14e7e0f88f528099dbeb31f100be9b357eca0.tar.xz |
Revert my http://hasso.linux.ee/zebra/ht-ifrmap-14042003.patch patch. Used
same idea as in lib/distribute.c to allow extract.pl to pick up commands
for vtysh.
Diffstat (limited to 'ripngd/ripngd.c')
-rw-r--r-- | ripngd/ripngd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ripngd/ripngd.c b/ripngd/ripngd.c index d8c34e80..e7cefaf0 100644 --- a/ripngd/ripngd.c +++ b/ripngd/ripngd.c @@ -37,11 +37,11 @@ #include "distribute.h" #include "plist.h" #include "routemap.h" +#include "if_rmap.h" #include "ripngd/ripngd.h" #include "ripngd/ripng_route.h" #include "ripngd/ripng_debug.h" -#include "ripngd/ripng_ifrmap.h" #define min(a, b) ((a) < (b) ? (a) : (b)) @@ -2520,7 +2520,7 @@ ripng_init () route_map_add_hook (ripng_routemap_update); route_map_delete_hook (ripng_routemap_update); - if_rmap_init (); + if_rmap_init (RIPNG_NODE); if_rmap_hook_add (ripng_if_rmap_update); if_rmap_hook_delete (ripng_if_rmap_update); } |