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 /bgpd/bgp_network.c | |
parent | b1184fa423d676dddeba855994ec32758fda1d31 (diff) | |
download | quagga-4e920a4d6e1f8097d02ea84c85edaa951d0fdb4f.tar.bz2 quagga-4e920a4d6e1f8097d02ea84c85edaa951d0fdb4f.tar.xz |
Remove usage of evil list and listnode typedefs.
Diffstat (limited to 'bgpd/bgp_network.c')
-rw-r--r-- | bgpd/bgp_network.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bgpd/bgp_network.c b/bgpd/bgp_network.c index aa369bc1..85e12d94 100644 --- a/bgpd/bgp_network.c +++ b/bgpd/bgp_network.c @@ -175,7 +175,7 @@ bgp_update_address (struct interface *ifp) { struct prefix_ipv4 *p; struct connected *connected; - listnode node; + struct listnode *node; for (node = listhead (ifp->connected); node; nextnode (node)) { |