aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-fix.c
diff options
context:
space:
mode:
authorMichael Mann <mmann78@netscape.net>2013-05-06 13:58:36 +0000
committerMichael Mann <mmann78@netscape.net>2013-05-06 13:58:36 +0000
commit880fc1ba7fee488d58a3474ae815daeee4b98c4c (patch)
tree10a424759e11a786c738d104714e19c44a692b41 /epan/dissectors/packet-fix.c
parent55570724c3d8e94ccfb33feb814be6f9b5ff11ac (diff)
Allow fix dissector to be found by name, which SSL needs for decryption. Bug 8625 (https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8625)
svn path=/trunk/; revision=49183
Diffstat (limited to 'epan/dissectors/packet-fix.c')
-rw-r--r--epan/dissectors/packet-fix.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/epan/dissectors/packet-fix.c b/epan/dissectors/packet-fix.c
index 870c7418a1..7109dc70fb 100644
--- a/epan/dissectors/packet-fix.c
+++ b/epan/dissectors/packet-fix.c
@@ -508,6 +508,9 @@ proto_register_fix(void)
proto_fix = proto_register_protocol("Financial Information eXchange Protocol",
"FIX", "fix");
+ /* Allow dissector to find be found by name. */
+ register_dissector("fix", dissect_fix, proto_fix);
+
proto_register_field_array(proto_fix, hf, array_length(hf));
proto_register_field_array(proto_fix, hf_FIX, array_length(hf_FIX));
proto_register_subtree_array(ett, array_length(ett));