diff options
author | Quentin Young <qlyoung@cumulusnetworks.com> | 2020-03-24 16:38:19 +0100 |
---|---|---|
committer | Quentin Young <qlyoung@cumulusnetworks.com> | 2020-04-13 19:25:25 +0200 |
commit | e4f5680d6e15e175895001bec06b9357ec70911a (patch) | |
tree | 811d245e1eacbf484046ebb1528ca9719aeb5472 /lib/zclient.c | |
parent | lib: improve sanity check on vrf backend value (diff) | |
download | frr-e4f5680d6e15e175895001bec06b9357ec70911a.tar.xz frr-e4f5680d6e15e175895001bec06b9357ec70911a.zip |
lib: re-add accidentally deleted pfx family set
Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com>
Diffstat (limited to '')
-rw-r--r-- | lib/zclient.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/zclient.c b/lib/zclient.c index fd822ba08..cfce9b167 100644 --- a/lib/zclient.c +++ b/lib/zclient.c @@ -2188,6 +2188,7 @@ struct connected *zebra_interface_address_read(int type, struct stream *s, /* Fetch interface address. */ STREAM_GETC(s, d.family); + p.family = d.family; plen = prefix_blen(&d); if (zclient_stream_get_prefix(s, &p) != 0) |