aboutsummaryrefslogtreecommitdiffstats
path: root/packet-ip.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2002-02-27 05:45:48 +0000
committerGuy Harris <guy@alum.mit.edu>2002-02-27 05:45:48 +0000
commit03e58907613b5f73236fcde0d81668a1f3f920bc (patch)
tree1c012da6f25dc346b070ab8b31eab89569645d32 /packet-ip.c
parent6bb9d7eaf87f015bf7600d430229a26f5383c36e (diff)
Label the data source for various forms of reassembled data with the
protocol that fragmented them, rather than just calling them "Reassembled". Do the same with uncompressed WCP data. svn path=/trunk/; revision=4822
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 48c0a864a3..e8d9f7daaa 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.162 2002/02/18 01:08:36 guy Exp $
+ * $Id: packet-ip.c,v 1.163 2002/02/27 05:45:48 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -1062,7 +1062,7 @@ dissect_ip(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
tvb_set_child_real_data_tvbuff(tvb, next_tvb);
/* Add the defragmented data to the data source list. */
- add_new_data_source(pinfo->fd, next_tvb, "Reassembled");
+ add_new_data_source(pinfo->fd, next_tvb, "Reassembled IPv4");
/* It's not fragmented. */
pinfo->fragmented = FALSE;