diff options
Diffstat (limited to 'src/plugins/gbp/gbp_learn_node.c')
-rw-r--r-- | src/plugins/gbp/gbp_learn_node.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/gbp/gbp_learn_node.c b/src/plugins/gbp/gbp_learn_node.c index 42d1ceb83e1..113969a526b 100644 --- a/src/plugins/gbp/gbp_learn_node.c +++ b/src/plugins/gbp/gbp_learn_node.c @@ -245,8 +245,8 @@ VLIB_NODE_FN (gbp_learn_l2_node) (vlib_main_t * vm, /* * check for new EP or a moved EP */ - if (NULL == ge0 || ge0->ge_fwd.gef_itf != sw_if_index0) - + if (NULL == ge0 || + gbp_itf_get_sw_if_index (ge0->ge_fwd.gef_itf) != sw_if_index0) { /* * use the last 4 bytes of the mac address as the hash for the EP |