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 /ospfd/ospf_zebra.c | |
parent | b1184fa423d676dddeba855994ec32758fda1d31 (diff) | |
download | quagga-4e920a4d6e1f8097d02ea84c85edaa951d0fdb4f.tar.bz2 quagga-4e920a4d6e1f8097d02ea84c85edaa951d0fdb4f.tar.xz |
Remove usage of evil list and listnode typedefs.
Diffstat (limited to 'ospfd/ospf_zebra.c')
-rw-r--r-- | ospfd/ospf_zebra.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ospfd/ospf_zebra.c b/ospfd/ospf_zebra.c index e42373c8..5520c089 100644 --- a/ospfd/ospf_zebra.c +++ b/ospfd/ospf_zebra.c @@ -315,7 +315,7 @@ ospf_zebra_add (struct prefix_ipv4 *p, struct ospf_route *or) int psize; struct stream *s; struct ospf_path *path; - listnode node; + struct listnode *node; if (zclient->redist[ZEBRA_ROUTE_OSPF]) { @@ -403,7 +403,7 @@ ospf_zebra_delete (struct prefix_ipv4 *p, struct ospf_route *or) struct zapi_ipv4 api; struct ospf_path *path; struct in_addr *nexthop; - listnode node; + struct listnode *node; if (zclient->redist[ZEBRA_ROUTE_OSPF]) { @@ -980,7 +980,7 @@ ospf_filter_update (struct access_list *access) int type; int abr_inv = 0; struct ospf_area *area; - listnode node; + struct listnode *node; /* If OSPF instatnce does not exist, return right now. */ ospf = ospf_lookup (); @@ -1048,7 +1048,7 @@ ospf_prefix_list_update (struct prefix_list *plist) int type; int abr_inv = 0; struct ospf_area *area; - listnode node; + struct listnode *node; /* If OSPF instatnce does not exist, return right now. */ ospf = ospf_lookup (); |