aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-trill.c
diff options
context:
space:
mode:
Diffstat (limited to 'epan/dissectors/packet-trill.c')
-rw-r--r--epan/dissectors/packet-trill.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-trill.c b/epan/dissectors/packet-trill.c
index 0ea57a88fb..0e3c2096e6 100644
--- a/epan/dissectors/packet-trill.c
+++ b/epan/dissectors/packet-trill.c
@@ -104,7 +104,7 @@ dissect_trill( tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree )
col_set_str( pinfo->cinfo, COL_PROTOCOL, TRILL_PROTO_COL_NAME ) ;
col_set_str( pinfo->cinfo, COL_INFO, TRILL_PROTO_COL_INFO ) ;
- op_len = tvb_get_bits( tvb, 5, 5, FALSE ) * TRILL_OP_LENGTH_BYTE_UNITS ;
+ op_len = tvb_get_bits( tvb, 5, 5, ENC_BIG_ENDIAN ) * TRILL_OP_LENGTH_BYTE_UNITS ;
if (tree) {
ti = proto_tree_add_item( tree, proto_trill, tvb, 0, -1, ENC_NA ) ;
trill_tree = proto_item_add_subtree( ti, ett_trill ) ;