summaryrefslogtreecommitdiff
path: root/ripngd/ripngd.c
diff options
context:
space:
mode:
authorhasso <hasso>2003-05-24 21:41:49 +0000
committerhasso <hasso>2003-05-24 21:41:49 +0000
commit0750d21fcfb034e47f781b09d984bfeec62b56a4 (patch)
treed8be8f2b61607f34a74c1897e6abdf3466917ff3 /ripngd/ripngd.c
parent04a72e593b870688649653f569ebc0e7589b4fdb (diff)
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.c4
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);
}