summaryrefslogtreecommitdiffstats
path: root/pimd/pim_nht.c
diff options
context:
space:
mode:
authorPhilippe Guibert <philippe.guibert@6wind.com>2017-12-18 12:42:12 +0100
committerPhilippe Guibert <philippe.guibert@6wind.com>2018-01-22 13:52:24 +0100
commit87ad28f48c368aa2f236345e9acd6ab0f5ea052e (patch)
tree7d1355a33acd49c4beba27339e5ffc08806af14f /pimd/pim_nht.c
parentbgpd: fix compilation issue with bgpd (diff)
downloadfrr-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.c2
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));