aboutsummaryrefslogtreecommitdiffstats
path: root/packet-text-media.c
diff options
context:
space:
mode:
authorOlivier Biot <obiot.ethereal@gmail.com>2004-01-10 02:54:50 +0000
committerOlivier Biot <obiot.ethereal@gmail.com>2004-01-10 02:54:50 +0000
commit86b33ae36bdd0164dd2503cd718822964291ee14 (patch)
tree429b14fe494bd8049ea2ddc8b887874cfeb3f9ad /packet-text-media.c
parent550a238a0fae6d055df4872aaeac3d0be65c86e6 (diff)
Get rid of an unused variable.
NOTE: the HTTP dissecotr does not remove content and transfer coding from the entity yet. This may look a little weird, but it is not unsafe :) Anyway, we now know what to do next ;^p svn path=/trunk/; revision=9626
Diffstat (limited to 'packet-text-media.c')
-rw-r--r--packet-text-media.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/packet-text-media.c b/packet-text-media.c
index 41a14370d1..c3e65ef5db 100644
--- a/packet-text-media.c
+++ b/packet-text-media.c
@@ -6,7 +6,7 @@
*
* (C) Olivier Biot, 2004 <Olivier.Biot (ad) siemens.com>
*
- * $Id: packet-text-media.c,v 1.1 2004/01/10 02:38:38 obiot Exp $
+ * $Id: packet-text-media.c,v 1.2 2004/01/10 02:54:50 obiot Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -47,11 +47,14 @@
* TODO - character set and chunked transfer-coding
*/
+/* Filterable header fields */
static gint proto_text_lines = -1;
+
+/* Subtrees */
static gint ett_text_lines = -1;
-static dissector_handle_t text_lines_handle;
-static const char default_data_name[] = "Line-based text data";
+/* Dissector handles */
+static dissector_handle_t text_lines_handle;
static void
dissect_text_lines(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)