aboutsummaryrefslogtreecommitdiffstats
path: root/packet-ip.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2003-06-05 22:23:57 +0000
committerGuy Harris <guy@alum.mit.edu>2003-06-05 22:23:57 +0000
commitea0065c234e892b0acad413f6b4af8b1df7e5a92 (patch)
tree620af10ba06255bfec3bc34afa6853826517f5d5 /packet-ip.c
parent96de41b6b245706419ea37ee6f6e0d84b43eaa56 (diff)
Frame numbers are unsigned.
svn path=/trunk/; revision=7794
Diffstat (limited to 'packet-ip.c')
-rw-r--r--packet-ip.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-ip.c b/packet-ip.c
index fa780c1fb3..4670d574b7 100644
--- a/packet-ip.c
+++ b/packet-ip.c
@@ -1,7 +1,7 @@
/* packet-ip.c
* Routines for IP and miscellaneous IP protocol packet disassembly
*
- * $Id: packet-ip.c,v 1.191 2003/04/29 17:24:35 guy Exp $
+ * $Id: packet-ip.c,v 1.192 2003/06/05 22:23:57 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -1075,7 +1075,7 @@ dissect_ip(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
}
if( ipfd_head && ipfd_head->reassembled_in != pinfo->fd->num ){
if (check_col(pinfo->cinfo, COL_INFO)) {
- col_append_fstr(pinfo->cinfo, COL_INFO, " [Reassembled in #%d]",
+ col_append_fstr(pinfo->cinfo, COL_INFO, " [Reassembled in #%u]",
ipfd_head->reassembled_in);
}
}