X-Git-Url: https://git.tcpdump.org/tcpdump/blobdiff_plain/546558eabd81cfc36a81a4df728fdfea0d83b41a..e6b28d9d94ec5bf3a23b15164aa3f0e3b7a06d15:/print-zephyr.c?ds=inline diff --git a/print-zephyr.c b/print-zephyr.c index 3edbeea4..d2fbf4d0 100644 --- a/print-zephyr.c +++ b/print-zephyr.c @@ -134,7 +134,7 @@ str_to_lower(const char *string) zb_string = z_buf; while (*zb_string) { - *zb_string = tolower((unsigned char)(*zb_string)); + *zb_string = ND_TOLOWER((unsigned char)(*zb_string)); zb_string++; } @@ -343,6 +343,6 @@ zephyr_print(netdissect_options *ndo, const u_char *cp, int length) return; trunc: - ND_PRINT(" [|zephyr] (%d)", length); + nd_print_trunc(ndo); return; }