]> git.puffer.fish Git - matthieu/frr.git/commitdiff
Yet another breakage introduced in May with zserv cleanup.
authorhasso <hasso>
Sat, 23 Oct 2004 14:26:49 +0000 (14:26 +0000)
committerhasso <hasso>
Sat, 23 Oct 2004 14:26:49 +0000 (14:26 +0000)
lib/ChangeLog
lib/zclient.c

index 439626a6fe2168bab97c2d0c4cd94409c428737a..8a9fb24708d4ee80224ab95284708e430324a699 100644 (file)
@@ -1,3 +1,8 @@
+2004-10-23 Hasso Tepper <hasso at quagga.net>
+
+       * zclient.c: Unbreak reading interface update message. Might fix
+       blocker bugzilla #109.
+
 2004-10-22 Paul Jakma <paul@dishone.st>
 
        * sockopt.c: (getsockopt_ipv4_ifindex) no ifindex should be 0, not
index dfb2f2fc79b956f17f885048f620fdeb2d8664c2..8325a56c846e6f9d939f74e0a3959e1e8cefba4e 100644 (file)
@@ -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);
 }