From 52dc7ee65f8d887b0730abc0a5d44d27fc6ecafd Mon Sep 17 00:00:00 2001 From: hasso Date: Thu, 23 Sep 2004 19:18:23 +0000 Subject: Remove usage of evil list and listnode typedefs. --- zebra/zserv.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'zebra/zserv.c') diff --git a/zebra/zserv.c b/zebra/zserv.c index 96d6f533..f57fe5c4 100644 --- a/zebra/zserv.c +++ b/zebra/zserv.c @@ -726,8 +726,8 @@ zsend_ipv4_import_lookup (struct zserv *client, struct prefix_ipv4 *p) static void zread_interface_add (struct zserv *client, u_short length) { - listnode ifnode; - listnode cnode; + struct listnode *ifnode; + struct listnode *cnode; struct interface *ifp; struct connected *c; @@ -1540,7 +1540,7 @@ DEFUN (show_zebra_client, "Zebra information" "Client information") { - listnode node; + struct listnode *node; struct zserv *client; for (node = listhead (zebrad.client_list); node; nextnode (node)) -- cgit v1.2.1