summaryrefslogtreecommitdiff
path: root/packet-http.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2003-12-07 03:21:22 +0000
committerGuy Harris <guy@alum.mit.edu>2003-12-07 03:21:22 +0000
commita8f4f4b924501b894640bc0a3137c3f8311cf7c1 (patch)
tree01376a8f585fd6ff47870fc8418812e98df69b39 /packet-http.c
parent36d88b6618ef44cd71e21ecc2e400b35c9b0c1c9 (diff)
downloadwireshark-a8f4f4b924501b894640bc0a3137c3f8311cf7c1.tar.gz
Change the name of the variable holding the dissector table pointer to
match the previous checkin. svn path=/trunk/; revision=9190
Diffstat (limited to 'packet-http.c')
-rw-r--r--packet-http.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/packet-http.c b/packet-http.c
index 3961e83cce..62d441769e 100644
--- a/packet-http.c
+++ b/packet-http.c
@@ -6,7 +6,7 @@
* Copyright 2002, Tim Potter <tpot@samba.org>
* Copyright 1999, Andrew Tridgell <tridge@samba.org>
*
- * $Id: packet-http.c,v 1.74 2003/12/07 03:17:42 guy Exp $
+ * $Id: packet-http.c,v 1.75 2003/12/07 03:21:22 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -127,7 +127,7 @@ static gboolean check_auth_basic(proto_item *hdr_item, tvbuff_t *tvb,
gchar *value);
static dissector_table_t port_subdissector_table;
-static dissector_table_t content_type_subdissector_table;
+static dissector_table_t media_type_subdissector_table;
static heur_dissector_list_t heur_subdissector_list;
static dissector_handle_t ntlmssp_handle=NULL;
@@ -560,7 +560,7 @@ dissect_http(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
* for that content type?
*/
handle = dissector_get_string_handle(
- content_type_subdissector_table,
+ media_type_subdissector_table,
entity_headers.content_type);
}
g_free(entity_headers.content_type);
@@ -1091,7 +1091,7 @@ proto_register_http(void)
* It's just "media_type", not "http.content_type", because
* it's an Internet media type, usable by other protocols as well.
*/
- content_type_subdissector_table =
+ media_type_subdissector_table =
register_dissector_table("media_type",
"Internet media type", FT_STRING, BASE_NONE);