From: Francois-Xavier Le Bail Date: Mon, 15 May 2023 07:58:27 +0000 (+0200) Subject: DVMRP: Update an error message X-Git-Url: https://git.tcpdump.org/tcpdump/commitdiff_plain/76f52d83ff8f3e1a42fe810cc08e8714488353e6 DVMRP: Update an error message This change will avoid having the keyword "invalid" twice as: [invalid ncount] (invalid) --- diff --git a/print-dvmrp.c b/print-dvmrp.c index 7d7ca075..6d6d7c19 100644 --- a/print-dvmrp.c +++ b/print-dvmrp.c @@ -321,7 +321,7 @@ print_neighbors2(netdissect_options *ndo, len -= 4; } if (ncount != -1) { - ND_PRINT(" [invalid ncount]"); + ND_PRINT(" [ncount %d]", ncount); goto invalid; } }