diff options
| author | Rafael Zalamena <rzalamena@users.noreply.github.com> | 2019-11-19 15:29:11 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-11-19 15:29:11 -0300 |
| commit | abdd51c11f2b34da053a655dd45ed17586b99d27 (patch) | |
| tree | 91a07bc7b764afebe70bc98e809d6f0ce87e80bc /ospfd/ospf_interface.c | |
| parent | 943de56af6c36277df8ffd08b9aa8873381c0dae (diff) | |
| parent | 0263751346afe9e9924caca33e0afdf2d92d552b (diff) | |
Merge pull request #5292 from donaldsharp/ospf_vrf_data
Ospf vrf data
Diffstat (limited to 'ospfd/ospf_interface.c')
| -rw-r--r-- | ospfd/ospf_interface.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ospfd/ospf_interface.c b/ospfd/ospf_interface.c index 5459e3b87c..7ddffbcdbd 100644 --- a/ospfd/ospf_interface.c +++ b/ospfd/ospf_interface.c @@ -273,7 +273,7 @@ struct ospf_interface *ospf_if_new(struct ospf *ospf, struct interface *ifp, if (IS_DEBUG_OSPF_EVENT) zlog_debug("%s: ospf interface %s vrf %s id %u created", __PRETTY_FUNCTION__, ifp->name, - ospf_vrf_id_to_name(ospf->vrf_id), ospf->vrf_id); + ospf_get_name(ospf), ospf->vrf_id); return oi; } @@ -832,7 +832,7 @@ struct ospf_interface *ospf_vl_new(struct ospf *ospf, struct prefix_ipv4 *p; if (IS_DEBUG_OSPF_EVENT) - zlog_debug("ospf_vl_new(): Start"); + zlog_debug("ospf_vl_new()(%s): Start", ospf_get_name(ospf)); if (vlink_count == OSPF_VL_MAX_COUNT) { if (IS_DEBUG_OSPF_EVENT) zlog_debug( |
