diff options
author | Philippe Guibert <philippe.guibert@6wind.com> | 2017-12-18 12:42:12 +0100 |
---|---|---|
committer | Philippe Guibert <philippe.guibert@6wind.com> | 2018-01-22 13:52:24 +0100 |
commit | 87ad28f48c368aa2f236345e9acd6ab0f5ea052e (patch) | |
tree | 7d1355a33acd49c4beba27339e5ffc08806af14f /pimd/pim_nht.c | |
parent | bgpd: fix compilation issue with bgpd (diff) | |
download | frr-87ad28f48c368aa2f236345e9acd6ab0f5ea052e.tar.xz frr-87ad28f48c368aa2f236345e9acd6ab0f5ea052e.zip |
pim: fix compilation issue with pim
The change of vrf_id_t from 16 bit to 32 bit needs some changes in pim
daemon.
Signed-off-by: Philippe Guibert <philippe.guibert@6wind.com>
Diffstat (limited to 'pimd/pim_nht.c')
-rw-r--r-- | pimd/pim_nht.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pimd/pim_nht.c b/pimd/pim_nht.c index e2984e1d1..089639c77 100644 --- a/pimd/pim_nht.c +++ b/pimd/pim_nht.c @@ -811,7 +811,7 @@ int pim_parse_nexthop_update(int command, struct zclient *zclient, char buf[PREFIX2STR_BUFFER]; prefix2str(&p, buf, sizeof(buf)); zlog_debug( - "%s: NHT Update for %s(%s) num_nh %d num_pim_nh %d vrf:%d up %ld rp %d", + "%s: NHT Update for %s(%s) num_nh %d num_pim_nh %d vrf:%u up %ld rp %d", __PRETTY_FUNCTION__, buf, pim->vrf->name, nexthop_num, pnc->nexthop_num, vrf_id, pnc->upstream_hash->count, listcount(pnc->rp_list)); |