diff options
author | Francois-Xavier Le Bail <devel.fx.lebail@orange.fr> | 2018-02-28 15:10:54 +0100 |
---|---|---|
committer | Francois-Xavier Le Bail <devel.fx.lebail@orange.fr> | 2018-02-28 15:13:00 +0100 |
commit | e545ffe3d777e99871a801a5d4348607e42b7c2c (patch) | |
tree | ae2e7cde910f9e00067ade8e1e77af057b727043 /print-atalk.c | |
parent | 5ae22f41a8e2152c8618227a0cc45b9de61a0f70 (diff) | |
download | tcpdump-e545ffe3d777e99871a801a5d4348607e42b7c2c.tar.gz |
AppleTalk: Filter out non-printable characters
Use fn_print_char().
Diffstat (limited to 'print-atalk.c')
-rw-r--r-- | print-atalk.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/print-atalk.c b/print-atalk.c index 3cd04177..0e0ab003 100644 --- a/print-atalk.c +++ b/print-atalk.c @@ -499,7 +499,7 @@ print_cstring(netdissect_options *ndo, ND_PRINT("%s", tstr); return (0); } - ND_PRINT("%c", EXTRACT_U_1(cp)); + fn_print_char(ndo, EXTRACT_U_1(cp)); cp++; length--; } |