diff options
author | hasso <hasso> | 2004-09-23 19:18:23 +0000 |
---|---|---|
committer | hasso <hasso> | 2004-09-23 19:18:23 +0000 |
commit | 52dc7ee65f8d887b0730abc0a5d44d27fc6ecafd (patch) | |
tree | a557339540c56dd3953c29a50ca0e48c1911efc8 /isisd | |
parent | 44983cf8a9c587dfbcad294b9dfe4dccbb68ba98 (diff) |
Remove usage of evil list and listnode typedefs.
Diffstat (limited to 'isisd')
-rw-r--r-- | isisd/ChangeLog | 4 | ||||
-rw-r--r-- | isisd/isis_circuit.c | 6 |
2 files changed, 7 insertions, 3 deletions
diff --git a/isisd/ChangeLog b/isisd/ChangeLog index 2b49c696..50028a91 100644 --- a/isisd/ChangeLog +++ b/isisd/ChangeLog @@ -1,3 +1,7 @@ +2004-09-23 Hasso Tepper <hasso at quagga.net> + + * *.[c|h]: list -> struct list *, listnode -> struct listnode *. + 2004-09-21 LIU Xin <lx at ns.6test.edu.cn> * isis_dr.c: Update dis_record of adjacencies when isisd becomes DIS. diff --git a/isisd/isis_circuit.c b/isisd/isis_circuit.c index 4f66346d..21aa59e4 100644 --- a/isisd/isis_circuit.c +++ b/isisd/isis_circuit.c @@ -626,9 +626,9 @@ isis_interface_config_write (struct vty *vty) { int write = 0; - listnode node; - listnode node2; - listnode node3; + struct listnode *node; + struct listnode *node2; + struct listnode *node3; struct interface *ifp; struct isis_area *area; struct isis_circuit *c; |