diff options
author | hasso <hasso> | 2004-07-23 21:34:27 +0000 |
---|---|---|
committer | hasso <hasso> | 2004-07-23 21:34:27 +0000 |
commit | 1203e1c07c444df615605168c72852389e20340c (patch) | |
tree | 2b00b78fe71fc2840837c0ffdb1c308192ceedf4 /ripngd/ripng_nexthop.c | |
parent | b219dea8d67b58db58755f94ea7cb44aa9774f0d (diff) | |
download | quagga-1203e1c07c444df615605168c72852389e20340c.tar.bz2 quagga-1203e1c07c444df615605168c72852389e20340c.tar.xz |
Use ifp->mtu6 in ospf6d and ripngd.
Diffstat (limited to 'ripngd/ripng_nexthop.c')
-rw-r--r-- | ripngd/ripng_nexthop.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ripngd/ripng_nexthop.c b/ripngd/ripng_nexthop.c index 2c5d45cd..04b13c50 100644 --- a/ripngd/ripng_nexthop.c +++ b/ripngd/ripng_nexthop.c @@ -144,7 +144,7 @@ ripng_rte_send(struct list *ripng_rte_list, struct interface *ifp, stream_reset (s); num = 0; - mtu = ifp->mtu; + mtu = ifp->mtu6; if (mtu < 0) mtu = IFMINMTU; |