#ifndef lint
static const char rcsid[] =
- "@(#) $Header: /tcpdump/master/tcpdump/util.c,v 1.74 2002-07-16 03:58:16 guy Exp $ (LBL)";
+ "@(#) $Header: /tcpdump/master/tcpdump/util.c,v 1.75 2002-07-16 04:03:16 guy Exp $ (LBL)";
#endif
#ifdef HAVE_CONFIG_H
ch = (unsigned char)(c & 0xff);
if (ch < 0x80 && isprint(ch))
- printf("%c", ch & 0xff);
+ printf("%c", ch);
else
- printf("\\%03o", ch & 0xff);
+ printf("\\%03o", ch);
}