diff options
Diffstat (limited to 'ripd/rip_offset.c')
| -rw-r--r-- | ripd/rip_offset.c | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/ripd/rip_offset.c b/ripd/rip_offset.c index 6899c4d174..61f1376045 100644 --- a/ripd/rip_offset.c +++ b/ripd/rip_offset.c @@ -78,9 +78,9 @@ struct rip_offset_list *  rip_offset_list_lookup (const char *ifname)  {    struct rip_offset_list *offset; -  struct listnode *nn; +  struct listnode *node, *nnode; -  LIST_LOOP (rip_offset_list_master, offset, nn) +  for (ALL_LIST_ELEMENTS (rip_offset_list_master, node, nnode, offset))      {        if (strcmp_safe (offset->ifname, ifname) == 0)  	return offset; @@ -378,10 +378,10 @@ rip_offset_clean ()  int  config_write_rip_offset_list (struct vty *vty)  { -  struct listnode *nn; +  struct listnode *node, *nnode;    struct rip_offset_list *offset; -  LIST_LOOP (rip_offset_list_master, offset, nn) +  for (ALL_LIST_ELEMENTS (rip_offset_list_master, node, nnode, offset))      {        if (! offset->ifname)  	{  | 
