summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--ryu/lib/packet/zebra.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ryu/lib/packet/zebra.py b/ryu/lib/packet/zebra.py
index 2858e053..c6513914 100644
--- a/ryu/lib/packet/zebra.py
+++ b/ryu/lib/packet/zebra.py
@@ -1845,7 +1845,7 @@ class _ZebraIPNexthopLookupMRib(_ZebraMessageBody):
buf += struct.pack(
self._DISTANCE_METRIC_FMT, self.distance, self.metric)
- return buf + self._serialize_nexthops(self.nexthops)
+ return buf + _serialize_nexthops(self.nexthops)
@_ZebraMessageBody.register_type(ZEBRA_IPV4_NEXTHOP_LOOKUP_MRIB)