From 1203e1c07c444df615605168c72852389e20340c Mon Sep 17 00:00:00 2001 From: hasso Date: Fri, 23 Jul 2004 21:34:27 +0000 Subject: Use ifp->mtu6 in ospf6d and ripngd. --- ospf6d/ospf6_zebra.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'ospf6d/ospf6_zebra.c') diff --git a/ospf6d/ospf6_zebra.c b/ospf6d/ospf6_zebra.c index b6220866..88211bb2 100644 --- a/ospf6d/ospf6_zebra.c +++ b/ospf6d/ospf6_zebra.c @@ -73,7 +73,7 @@ ospf6_zebra_if_add (int command, struct zclient *zclient, zebra_size_t length) ifp = zebra_interface_add_read (zclient->ibuf); if (IS_OSPF6_DEBUG_ZEBRA (RECV)) zlog_info ("Zebra Interface add: %s index %d mtu %d", - ifp->name, ifp->ifindex, ifp->mtu); + ifp->name, ifp->ifindex, ifp->mtu6); ospf6_interface_if_add (ifp); return 0; } @@ -87,7 +87,7 @@ ospf6_zebra_if_del (int command, struct zclient *zclient, zebra_size_t length) ifp = zebra_interface_delete_read (zclient->ibuf); if (IS_OSPF6_DEBUG_ZEBRA (RECV)) zlog_info ("Zebra Interface delete: %s index %d mtu %d", - ifp->name, ifp->ifindex, ifp->mtu); + ifp->name, ifp->ifindex, ifp->mtu6); ospf6_interface_if_del (ifp); #endif /*0*/ @@ -104,7 +104,7 @@ ospf6_zebra_if_state_update (int command, struct zclient *zclient, if (IS_OSPF6_DEBUG_ZEBRA (RECV)) zlog_info ("Zebra Interface state change: " "%s index %d flags %ld metric %d mtu %d", - ifp->name, ifp->ifindex, ifp->flags, ifp->metric, ifp->mtu); + ifp->name, ifp->ifindex, ifp->flags, ifp->metric, ifp->mtu6); ospf6_interface_state_update (ifp); return 0; -- cgit v1.2.1