packet/zebra: Fix unresolved reference for _serialize_nexthops

Signed-off-by: IWASE Yusuke <iwase.yusuke0@gmail.com>
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
This commit is contained in:
IWASE Yusuke 2017-09-05 10:13:30 +09:00 committed by FUJITA Tomonori
parent 0673a8868e
commit 96891addf5

View File

@ -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)