aboutsummaryrefslogtreecommitdiffstats
path: root/packet-wcp.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-wcp.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-wcp.c')
-rw-r--r--packet-wcp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-wcp.c b/packet-wcp.c
index 7cdff8ce4d..33d378cac1 100644
--- a/packet-wcp.c
+++ b/packet-wcp.c
@@ -2,7 +2,7 @@
* Routines for Wellfleet Compression frame disassembly
* Copyright 2001, Jeffrey C. Foster <jfoste@woodward.com>
*
- * $Id: packet-wcp.c,v 1.21 2002/02/18 01:08:37 guy Exp $
+ * $Id: packet-wcp.c,v 1.22 2002/02/27 05:45:48 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -602,7 +602,7 @@ static tvbuff_t *wcp_uncompress( tvbuff_t *src_tvb, int offset, packet_info *pin
tvb_set_child_real_data_tvbuff( src_tvb, tvb);
/* Add new data to the data source list */
- add_new_data_source( pinfo->fd, tvb, "Uncompressed");
+ add_new_data_source( pinfo->fd, tvb, "Uncompressed WCP");
return tvb;
}