diff options
-rw-r--r-- | zebra/ChangeLog | 4 | ||||
-rw-r--r-- | zebra/zserv.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/zebra/ChangeLog b/zebra/ChangeLog index 1284ede0..506e3ae3 100644 --- a/zebra/ChangeLog +++ b/zebra/ChangeLog @@ -1,3 +1,7 @@ +2004-10-19 Hasso Tepper <hasso at quagga.net> + + * zserv.c: Fix regression introduced with zserv cleanup. + 2004-10-13 Hasso Tepper <hasso at quagga.net> * zebra_snmp.c: Remove defaults used to initialize smux connection to diff --git a/zebra/zserv.c b/zebra/zserv.c index bb7937d1..10dd5fa5 100644 --- a/zebra/zserv.c +++ b/zebra/zserv.c @@ -526,7 +526,7 @@ zsend_route_multipath (int cmd, struct zserv *client, struct prefix *p, /* Write next-hop number */ if (nhnummark) - stream_putw_at (s, nhnummark, nhnum); + stream_putc_at (s, nhnummark, nhnum); /* Write packet size. */ stream_putw_at (s, 0, stream_get_endp (s)); |