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 /lib/zclient.c | |
parent | 41908818b8f446befc3654fa5bbc98c6c0af92a3 (diff) | |
download | quagga-a939514c59fe1a56a820e82bc59d82c721076c03.tar.bz2 quagga-a939514c59fe1a56a820e82bc59d82c721076c03.tar.xz |
Patch from Cougar - sort iflist by name.
Diffstat (limited to 'lib/zclient.c')
-rw-r--r-- | lib/zclient.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/zclient.c b/lib/zclient.c index bb7747fa..f6be5138 100644 --- a/lib/zclient.c +++ b/lib/zclient.c @@ -555,10 +555,7 @@ zebra_interface_add_read (struct stream *s) /* If such interface does not exist, make new one. */ if (! ifp) - { - ifp = if_create (); - strncpy (ifp->name, ifname_tmp, IFNAMSIZ); - } + ifp = if_create (ifname_tmp, IFNAMSIZ); /* Read interface's index. */ ifp->ifindex = stream_getl (s); |