diff options
author | Guy Harris <guy@alum.mit.edu> | 2013-12-12 21:06:55 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2013-12-12 21:06:55 +0000 |
commit | 859cd68acce8078fdfb6640e39ca8487272c8e30 (patch) | |
tree | 694d29739a54bac0f14af2ed3d5117dd72192d72 /epan/dissectors/packet-aim.c | |
parent | b54c6ea57f8bd55b5a4eda84bdbabec257e1e496 (diff) | |
download | wireshark-859cd68acce8078fdfb6640e39ca8487272c8e30.tar.gz wireshark-859cd68acce8078fdfb6640e39ca8487272c8e30.tar.bz2 wireshark-859cd68acce8078fdfb6640e39ca8487272c8e30.zip |
In r12060, use of the "aim.family" subdissector table was eliminated, in
favor of the AIM dissector having its own private way of handing off to
subdissectors. Get rid of the subdissector table.
svn path=/trunk/; revision=53989
Diffstat (limited to 'epan/dissectors/packet-aim.c')
-rw-r--r-- | epan/dissectors/packet-aim.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/epan/dissectors/packet-aim.c b/epan/dissectors/packet-aim.c index b808dce634..5eed6a3739 100644 --- a/epan/dissectors/packet-aim.c +++ b/epan/dissectors/packet-aim.c @@ -380,8 +380,6 @@ static const value_string aim_ssi_result_codes[] = { { 0, NULL } }; -static dissector_table_t subdissector_table; - /* Initialize the protocol and registered fields */ static int proto_aim = -1; static int hf_aim_cmd_start = -1; @@ -1725,9 +1723,6 @@ proto_register_aim(void) "Whether the AIM dissector should reassemble messages spanning multiple TCP segments." " To use this option, you must also enable \"Allow subdissectors to reassemble TCP streams\" in the TCP protocol settings.", &aim_desegment); - - subdissector_table = register_dissector_table("aim.family", - "AIM Family ID", FT_UINT16, BASE_HEX); } void |