diff options
author | hasso <hasso> | 2004-09-23 19:18:23 +0000 |
---|---|---|
committer | hasso <hasso> | 2004-09-23 19:18:23 +0000 |
commit | 4e920a4d6e1f8097d02ea84c85edaa951d0fdb4f (patch) | |
tree | a91cf8638374956315b62b8ef31dae29f90ee07e /ospf6d/ospf6_spf.c | |
parent | b1184fa423d676dddeba855994ec32758fda1d31 (diff) | |
download | quagga-4e920a4d6e1f8097d02ea84c85edaa951d0fdb4f.tar.bz2 quagga-4e920a4d6e1f8097d02ea84c85edaa951d0fdb4f.tar.xz |
Remove usage of evil list and listnode typedefs.
Diffstat (limited to 'ospf6d/ospf6_spf.c')
-rw-r--r-- | ospf6d/ospf6_spf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ospf6d/ospf6_spf.c b/ospf6d/ospf6_spf.c index 6d4237a2..79539b2f 100644 --- a/ospf6d/ospf6_spf.c +++ b/ospf6d/ospf6_spf.c @@ -281,7 +281,7 @@ ospf6_spf_install (struct ospf6_vertex *v, struct ospf6_route *route; int i, j; struct ospf6_vertex *prev, *w; - listnode node; + struct listnode *node; if (IS_OSPF6_DEBUG_SPF (PROCESS)) zlog_info ("SPF install %s hops %d cost %d", @@ -530,7 +530,7 @@ void ospf6_spf_display_subtree (struct vty *vty, char *prefix, int rest, struct ospf6_vertex *v) { - listnode node; + struct listnode *node; struct ospf6_vertex *c; char *next_prefix; int len; |