X-Git-Url: https://git.tcpdump.org/tcpdump/blobdiff_plain/c499612a7f1024a183d0200ef5f1ea7fba63a3e4..a8abce5c5e2dce2ba6dbccd5d3829da104b80f9c:/print-telnet.c diff --git a/print-telnet.c b/print-telnet.c index 6c3e7d53..3bfb19a2 100644 --- a/print-telnet.c +++ b/print-telnet.c @@ -58,7 +58,6 @@ #include "netdissect.h" #include "extract.h" -static const char tstr[] = " [|telnet]"; #define TELCMDS #define TELOPTS @@ -501,7 +500,7 @@ done: return sp - osp; trunc: - ND_PRINT("%s", tstr); + nd_print_trunc(ndo); pktend: return -1; #undef FETCH @@ -514,6 +513,7 @@ telnet_print(netdissect_options *ndo, const u_char *sp, u_int length) const u_char *osp; int l; + ndo->ndo_protocol = "telnet"; osp = sp; ND_TCHECK_1(sp); @@ -555,5 +555,5 @@ telnet_print(netdissect_options *ndo, const u_char *sp, u_int length) } return; trunc: - ND_PRINT("%s", tstr); + nd_print_trunc(ndo); }