aboutsummaryrefslogtreecommitdiffstats
path: root/tshark.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2011-07-05 23:59:23 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2011-07-05 23:59:23 +0000
commit30bec30f6b09233596797065da80b9de0caa9f84 (patch)
tree9de5204646376e5738927cd869a3aa198785ae58 /tshark.c
parentf7ca97eef8267fde3f4adefc240c1802f308a3c6 (diff)
Add some additional routine variants that handle string encodings, and
make FT_STRING and FT_UINT_STRING handle string encodings. Get rid of FT_EBCDIC in favor of FT_STRING with ENC_EBCDIC. Add some URLs for DRDA. Clean up some stuff in TN3270 and TN5250, including using ENC_ values for proto_tree_add_item(). git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@37909 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'tshark.c')
-rw-r--r--tshark.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/tshark.c b/tshark.c
index 5d19b2d5ec..473a6898ec 100644
--- a/tshark.c
+++ b/tshark.c
@@ -589,7 +589,6 @@ add_decode_as(const gchar *cl_param)
case FT_STRING:
case FT_STRINGZ:
- case FT_EBCDIC:
/* The selector for this table is a string. */
break;
@@ -686,7 +685,6 @@ add_decode_as(const gchar *cl_param)
case FT_STRING:
case FT_STRINGZ:
- case FT_EBCDIC:
/* The selector for this table is a string. */
dissector_change_string(table_name, selector_str, dissector_matching);
break;