aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-tn3270.c
diff options
context:
space:
mode:
Diffstat (limited to 'epan/dissectors/packet-tn3270.c')
-rw-r--r--epan/dissectors/packet-tn3270.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/epan/dissectors/packet-tn3270.c b/epan/dissectors/packet-tn3270.c
index 9d246e62da..67b448282d 100644
--- a/epan/dissectors/packet-tn3270.c
+++ b/epan/dissectors/packet-tn3270.c
@@ -1570,7 +1570,7 @@ tn3270_add_hf_items(proto_tree *tn3270_tree, tvbuff_t *tvb, gint offset,
fields[i].encoding);
} else {
proto_tree_add_bitmask(tn3270_tree, tvb, offset, fields[i].hf,
- fields[i].bitmask_ett, fields[i].bitmask, FALSE);
+ fields[i].bitmask_ett, fields[i].bitmask, ENC_BIG_ENDIAN);
}
offset+=fields[i].length;
}
@@ -1712,7 +1712,7 @@ dissect_3270_field_attribute(proto_tree *tn3270_tree, tvbuff_t *tvb, gint offset
proto_tree_add_bitmask(tn3270_tree, tvb, offset, hf_tn3270_field_attribute,
- ett_tn3270_field_attribute, byte, FALSE);
+ ett_tn3270_field_attribute, byte, ENC_BIG_ENDIAN);
offset++;
return (offset - start);
@@ -1736,7 +1736,7 @@ dissect_ccc(proto_tree *tn3270_tree, tvbuff_t *tvb, gint offset)
proto_tree_add_bitmask(tn3270_tree, tvb, offset, hf_tn3270_ccc,
- ett_tn3270_ccc, byte, FALSE);
+ ett_tn3270_ccc, byte, ENC_BIG_ENDIAN);
offset++;
return (offset - start);