summaryrefslogtreecommitdiff
path: root/util.c
diff options
context:
space:
mode:
authorhannes <hannes>2006-02-08 16:18:56 +0000
committerhannes <hannes>2006-02-08 16:18:56 +0000
commit03f755dab7de5af69a805de33c53c3c3727a675c (patch)
tree67cbadad25681f21ea0b7d9c844fe0a238fa5f90 /util.c
parent5438a44db90ce496d1e8ec4826c3e77c35b04a0a (diff)
downloadtcpdump-03f755dab7de5af69a805de33c53c3c3727a675c.tar.gz
add support for AIS/RDI OAM cell payload printing, hexdump location/source ID for loopback OAM cells rather than attempting to print it
Diffstat (limited to 'util.c')
-rw-r--r--util.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/util.c b/util.c
index cb4f2aaa..5746b094 100644
--- a/util.c
+++ b/util.c
@@ -21,7 +21,7 @@
#ifndef lint
static const char rcsid[] _U_ =
- "@(#) $Header: /tcpdump/master/tcpdump/util.c,v 1.106 2006-02-08 01:38:16 hannes Exp $ (LBL)";
+ "@(#) $Header: /tcpdump/master/tcpdump/util.c,v 1.107 2006-02-08 16:18:56 hannes Exp $ (LBL)";
#endif
#ifdef HAVE_CONFIG_H
@@ -545,5 +545,5 @@ safeputchar(int c)
if (ch < 0x80 && isprint(ch))
printf("%c", ch);
else
- printf("\\0x%02x ", ch);
+ printf("\\0x%02x", ch);
}