X-Git-Url: https://git.tcpdump.org/tcpdump/blobdiff_plain/546558eabd81cfc36a81a4df728fdfea0d83b41a..cda9bf8c5f842fc7110fbbf2234bcc898f78c0bd:/print-msnlb.c diff --git a/print-msnlb.c b/print-msnlb.c index 5fdf5575..5d25f568 100644 --- a/print-msnlb.c +++ b/print-msnlb.c @@ -57,10 +57,10 @@ msnlb_print(netdissect_options *ndo, const u_char *bp) ND_TCHECK_SIZE(hb); ND_PRINT("MS NLB heartbeat, host priority: %u,", - EXTRACT_LE_U_4((hb->host_prio))); + GET_LE_U_4((hb->host_prio))); ND_PRINT(" cluster IP: %s,", ipaddr_string(ndo, hb->virtual_ip)); ND_PRINT(" host IP: %s", ipaddr_string(ndo, hb->host_ip)); return; trunc: - ND_PRINT("[|MS NLB]"); + nd_print_trunc(ndo); }