The recent change to use %pFX missed a code path
where we were displaying a buf that was uninited.
Display the prefix as intended.
Signed-off-by: Donald Sharp <sharpd@nvidia.com>
api.instance, &api.prefix, buf, nhtype, ifindex,
api.metric, api.tag);
} else {
- zlog_debug("Rx route DEL VRF %u %s[%d] %s", vrf_id,
+ zlog_debug("Rx route DEL VRF %u %s[%d] %pFX", vrf_id,
zebra_route_string(api.type), api.instance,
- buf);
+ &api.prefix);
}
}