summaryrefslogtreecommitdiff
path: root/ripngd/ripngd.c
diff options
context:
space:
mode:
authorhasso <hasso>2004-09-23 19:18:23 +0000
committerhasso <hasso>2004-09-23 19:18:23 +0000
commit52dc7ee65f8d887b0730abc0a5d44d27fc6ecafd (patch)
treea557339540c56dd3953c29a50ca0e48c1911efc8 /ripngd/ripngd.c
parent44983cf8a9c587dfbcad294b9dfe4dccbb68ba98 (diff)
Remove usage of evil list and listnode typedefs.
Diffstat (limited to 'ripngd/ripngd.c')
-rw-r--r--ripngd/ripngd.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/ripngd/ripngd.c b/ripngd/ripngd.c
index 77e47547..874848c9 100644
--- a/ripngd/ripngd.c
+++ b/ripngd/ripngd.c
@@ -391,7 +391,7 @@ ripng_nexthop_rte (struct rte *rte,
int
ripng_lladdr_check (struct interface *ifp, struct in6_addr *addr)
{
- listnode listnode;
+ struct listnode *listnode;
struct connected *connected;
struct prefix *p;
@@ -1438,7 +1438,7 @@ ripng_clear_changed_flag ()
int
ripng_update (struct thread *t)
{
- listnode node;
+ struct listnode *node;
struct interface *ifp;
struct ripng_interface *ri;
@@ -1513,7 +1513,7 @@ ripng_triggered_interval (struct thread *t)
int
ripng_triggered_update (struct thread *t)
{
- listnode node;
+ struct listnode *node;
struct interface *ifp;
struct ripng_interface *ri;
int interval;
@@ -2146,7 +2146,7 @@ DEFUN (show_ipv6_ripng_status,
"Show RIPng routes\n"
"IPv6 routing protocol process parameters and statistics\n")
{
- listnode node;
+ struct listnode *node;
int ripng_network_write (struct vty *, int);
void ripng_redistribute_write (struct vty *, int);
@@ -2816,7 +2816,7 @@ void
ripng_distribute_update_all ()
{
struct interface *ifp;
- listnode node;
+ struct listnode *node;
for (node = listhead (iflist); node; nextnode (node))
{
@@ -2988,7 +2988,7 @@ void
ripng_routemap_update ()
{
struct interface *ifp;
- listnode node;
+ struct listnode *node;
for (node = listhead (iflist); node; nextnode (node))
{