X-Git-Url: https://git.tcpdump.org/tcpdump/blobdiff_plain/774179b62f1911cfb7ba76228e98eae3666937f9..b51a0dafc7861eb31d21524ec067d7c529a664b8:/print-msnlb.c diff --git a/print-msnlb.c b/print-msnlb.c index de360ea9..8afaa7fe 100644 --- a/print-msnlb.c +++ b/print-msnlb.c @@ -55,8 +55,8 @@ msnlb_print(netdissect_options *ndo, const u_char *bp) ndo->ndo_protocol = "msnlb"; hb = (const struct msnlb_heartbeat_pkt *)bp; - ND_PRINT("MS NLB heartbeat, host priority: %u,", - GET_LE_U_4((hb->host_prio))); - ND_PRINT(" cluster IP: %s,", GET_IPADDR_STRING(hb->virtual_ip)); - ND_PRINT(" host IP: %s", GET_IPADDR_STRING(hb->host_ip)); + ND_PRINT("MS NLB heartbeat"); + ND_PRINT(", host priority: %u", GET_LE_U_4((hb->host_prio))); + ND_PRINT(", cluster IP: %s", GET_IPADDR_STRING(hb->virtual_ip)); + ND_PRINT(", host IP: %s", GET_IPADDR_STRING(hb->host_ip)); }