summaryrefslogtreecommitdiff
path: root/print-ip.c
diff options
context:
space:
mode:
authorfenner <fenner>2001-02-20 18:55:47 +0000
committerfenner <fenner>2001-02-20 18:55:47 +0000
commiteb00e93789f2d2cf94064c1b81a3469d3421bc6f (patch)
tree041482e0ba3c72de5a0cabb4fc8f414f079926e4 /print-ip.c
parentaf07016e37c8914b1fb31284884ba0427e2d7fe8 (diff)
downloadtcpdump-eb00e93789f2d2cf94064c1b81a3469d3421bc6f.tar.gz
Add missing space after "truncated-ip: %d bytes missing!"
Diffstat (limited to 'print-ip.c')
-rw-r--r--print-ip.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/print-ip.c b/print-ip.c
index d37c47ea..04de692e 100644
--- a/print-ip.c
+++ b/print-ip.c
@@ -21,7 +21,7 @@
#ifndef lint
static const char rcsid[] =
- "@(#) $Header: /tcpdump/master/tcpdump/print-ip.c,v 1.93 2001-01-28 08:18:27 itojun Exp $ (LBL)";
+ "@(#) $Header: /tcpdump/master/tcpdump/print-ip.c,v 1.94 2001-02-20 18:55:47 fenner Exp $ (LBL)";
#endif
#ifdef HAVE_CONFIG_H
@@ -301,7 +301,7 @@ ip_print(register const u_char *bp, register u_int length)
len = ntohs(ip->ip_len);
if (length < len)
- (void)printf("truncated-ip - %d bytes missing!",
+ (void)printf("truncated-ip - %d bytes missing! ",
len - length);
len -= hlen;
len0 = len;