diff options
author | hasso <hasso> | 2004-09-23 21:18:23 +0200 |
---|---|---|
committer | hasso <hasso> | 2004-09-23 21:18:23 +0200 |
commit | 52dc7ee65f8d887b0730abc0a5d44d27fc6ecafd (patch) | |
tree | a557339540c56dd3953c29a50ca0e48c1911efc8 /ospf6d/ospf6d.c | |
parent | 2004-09-22 Paul Jakma <paul.jakma@sun.com> (diff) | |
download | frr-52dc7ee65f8d887b0730abc0a5d44d27fc6ecafd.tar.xz frr-52dc7ee65f8d887b0730abc0a5d44d27fc6ecafd.zip |
Remove usage of evil list and listnode typedefs.
Diffstat (limited to 'ospf6d/ospf6d.c')
-rw-r--r-- | ospf6d/ospf6d.c | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/ospf6d/ospf6d.c b/ospf6d/ospf6d.c index 4a722e418..e94a036b1 100644 --- a/ospf6d/ospf6d.c +++ b/ospf6d/ospf6d.c @@ -174,7 +174,7 @@ DEFUN (show_ipv6_ospf6_database, ) { int level; - listnode i, j; + struct listnode *i, *j; struct ospf6 *o = ospf6; struct ospf6_area *oa; struct ospf6_interface *oi; @@ -242,7 +242,7 @@ DEFUN (show_ipv6_ospf6_database_type, ) { int level; - listnode i, j; + struct listnode *i, *j; struct ospf6 *o = ospf6; struct ospf6_area *oa; struct ospf6_interface *oi; @@ -330,7 +330,7 @@ DEFUN (show_ipv6_ospf6_database_id, ) { int level; - listnode i, j; + struct listnode *i, *j; struct ospf6 *o = ospf6; struct ospf6_area *oa; struct ospf6_interface *oi; @@ -429,7 +429,7 @@ DEFUN (show_ipv6_ospf6_database_router, ) { int level; - listnode i, j; + struct listnode *i, *j; struct ospf6 *o = ospf6; struct ospf6_area *oa; struct ospf6_interface *oi; @@ -538,7 +538,7 @@ DEFUN (show_ipv6_ospf6_database_type_id, ) { int level; - listnode i, j; + struct listnode *i, *j; struct ospf6 *o = ospf6; struct ospf6_area *oa; struct ospf6_interface *oi; @@ -697,7 +697,7 @@ DEFUN (show_ipv6_ospf6_database_type_router, ) { int level; - listnode i, j; + struct listnode *i, *j; struct ospf6 *o = ospf6; struct ospf6_area *oa; struct ospf6_interface *oi; @@ -847,7 +847,7 @@ DEFUN (show_ipv6_ospf6_database_id_router, ) { int level; - listnode i, j; + struct listnode *i, *j; struct ospf6 *o = ospf6; struct ospf6_area *oa; struct ospf6_interface *oi; @@ -933,7 +933,7 @@ DEFUN (show_ipv6_ospf6_database_adv_router_linkstate_id, ) { int level; - listnode i, j; + struct listnode *i, *j; struct ospf6 *o = ospf6; struct ospf6_area *oa; struct ospf6_interface *oi; @@ -1029,7 +1029,7 @@ DEFUN (show_ipv6_ospf6_database_type_id_router, ) { int level; - listnode i, j; + struct listnode *i, *j; struct ospf6 *o = ospf6; struct ospf6_area *oa; struct ospf6_interface *oi; @@ -1154,7 +1154,7 @@ DEFUN (show_ipv6_ospf6_database_type_adv_router_linkstate_id, ) { int level; - listnode i, j; + struct listnode *i, *j; struct ospf6 *o = ospf6; struct ospf6_area *oa; struct ospf6_interface *oi; @@ -1266,7 +1266,7 @@ DEFUN (show_ipv6_ospf6_database_self_originated, ) { int level; - listnode i, j; + struct listnode *i, *j; struct ospf6 *o = ospf6; struct ospf6_area *oa; struct ospf6_interface *oi; @@ -1339,7 +1339,7 @@ DEFUN (show_ipv6_ospf6_database_type_self_originated, ) { int level; - listnode i, j; + struct listnode *i, *j; struct ospf6 *o = ospf6; struct ospf6_area *oa; struct ospf6_interface *oi; @@ -1444,7 +1444,7 @@ DEFUN (show_ipv6_ospf6_database_type_self_originated_linkstate_id, ) { int level; - listnode i, j; + struct listnode *i, *j; struct ospf6 *o = ospf6; struct ospf6_area *oa; struct ospf6_interface *oi; @@ -1560,7 +1560,7 @@ DEFUN (show_ipv6_ospf6_database_type_id_self_originated, ) { int level; - listnode i, j; + struct listnode *i, *j; struct ospf6 *o = ospf6; struct ospf6_area *oa; struct ospf6_interface *oi; @@ -1723,7 +1723,7 @@ DEFUN (show_ipv6_ospf6_linkstate, "Display linkstate routing table\n" ) { - listnode node; + struct listnode *node; struct ospf6_area *oa; for (node = listhead (ospf6->area_list); node; nextnode (node)) @@ -1773,7 +1773,7 @@ DEFUN (show_ipv6_ospf6_linkstate_detail, { char *sargv[CMD_ARGC_MAX]; int i, sargc; - listnode node; + struct listnode *node; struct ospf6_area *oa; /* copy argv to sargv and then append "detail" */ |