diff options
author | hasso <hasso> | 2004-10-23 14:26:49 +0000 |
---|---|---|
committer | hasso <hasso> | 2004-10-23 14:26:49 +0000 |
commit | 7ecfe0081f02020b5a966119cbfcc94639c1ea90 (patch) | |
tree | 93f748a503b19bb14ff4ad8bf9d622a5895ea20e /lib/zclient.c | |
parent | c6c26ba5eb611eff2177baf1f153bc4abce74970 (diff) | |
download | quagga-7ecfe0081f02020b5a966119cbfcc94639c1ea90.tar.bz2 quagga-7ecfe0081f02020b5a966119cbfcc94639c1ea90.tar.xz |
Yet another breakage introduced in May with zserv cleanup.
Diffstat (limited to 'lib/zclient.c')
-rw-r--r-- | lib/zclient.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/zclient.c b/lib/zclient.c index dfb2f2fc..8325a56c 100644 --- a/lib/zclient.c +++ b/lib/zclient.c @@ -636,11 +636,13 @@ zebra_interface_if_set_value (struct stream *s, struct interface *ifp) { /* Read interface's index. */ ifp->ifindex = stream_getl (s); + ifp->status = stream_getc (s); /* Read interface's value. */ ifp->flags = stream_getl (s); ifp->metric = stream_getl (s); ifp->mtu = stream_getl (s); + ifp->mtu6 = stream_getl (s); ifp->bandwidth = stream_getl (s); } |