diff options
author | hasso <hasso> | 2003-06-05 17:50:01 +0000 |
---|---|---|
committer | hasso <hasso> | 2003-06-05 17:50:01 +0000 |
commit | a939514c59fe1a56a820e82bc59d82c721076c03 (patch) | |
tree | 85a2d3d1d3e0a4f35d0865778c7522b8569b40f8 /ospfd | |
parent | 41908818b8f446befc3654fa5bbc98c6c0af92a3 (diff) |
Patch from Cougar - sort iflist by name.
Diffstat (limited to 'ospfd')
-rw-r--r-- | ospfd/ospf_interface.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ospfd/ospf_interface.c b/ospfd/ospf_interface.c index 08bc7fbe..d3ab01f5 100644 --- a/ospfd/ospf_interface.c +++ b/ospfd/ospf_interface.c @@ -745,7 +745,7 @@ ospf_vl_new (struct ospf *ospf, struct ospf_vl_data *vl_data) if (IS_DEBUG_OSPF_EVENT) zlog_info ("ospf_vl_new(): creating pseudo zebra interface"); - vi = if_create (); + vi = if_create (NULL, 0); co = connected_new (); co->ifp = vi; listnode_add (vi->connected, co); |