aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
Diffstat (limited to 'epan')
-rw-r--r--epan/dissectors/packet-fix.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-fix.c b/epan/dissectors/packet-fix.c
index 374f2de0e2..5d05090f1d 100644
--- a/epan/dissectors/packet-fix.c
+++ b/epan/dissectors/packet-fix.c
@@ -863,8 +863,8 @@ dissect_fix(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
GString *label = NULL;
GString *summary_label = NULL;
- /* get at least the fix version: 8=FIX.x.x */
- if (tvb_strneql(tvb, 0, "8=FIX.", 6) != 0) {
+ /* get at least the fix version: 8=FIX.x.x or 8=FIXT.x.x */
+ if (tvb_strneql(tvb, 0, "8=FIX", 5) != 0) {
/* not a fix packet */
return FALSE;
}