summaryrefslogtreecommitdiff
path: root/asn1/h248/h248.cnf
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2012-05-07 22:46:14 +0000
committerGuy Harris <guy@alum.mit.edu>2012-05-07 22:46:14 +0000
commitc51cadd00e0265c4b077bb4cc20a0a89781f28ff (patch)
tree09a41a93a503253b213a1e828fceb7775c52db09 /asn1/h248/h248.cnf
parentc055ca8c7e2457c348d5ae22e3b779b99a11ffec (diff)
downloadwireshark-c51cadd00e0265c4b077bb4cc20a0a89781f28ff.tar.gz
Get rid of remaining Booleans-as-encoding-arguments in
proto_tree_add_item() calls. svn path=/trunk/; revision=42488
Diffstat (limited to 'asn1/h248/h248.cnf')
-rw-r--r--asn1/h248/h248.cnf6
1 files changed, 3 insertions, 3 deletions
diff --git a/asn1/h248/h248.cnf b/asn1/h248/h248.cnf
index 1cb5105190..1aa47ed058 100644
--- a/asn1/h248/h248.cnf
+++ b/asn1/h248/h248.cnf
@@ -317,9 +317,9 @@ PropertyParmV1/extraInfo extra_info
tvbuff_t* new_tvb;
offset = dissect_ber_octet_string(implicit_tag, actx, tree, tvb, offset, hf_index, &new_tvb);
tree = proto_item_add_subtree(actx->created_item,ett_wildcard);
- proto_tree_add_item(tree,hf_h248_term_wild_type,new_tvb,0,1,FALSE);
- proto_tree_add_item(tree,hf_h248_term_wild_level,new_tvb,0,1,FALSE);
- proto_tree_add_item(tree,hf_h248_term_wild_position,new_tvb,0,1,FALSE);
+ proto_tree_add_item(tree,hf_h248_term_wild_type,new_tvb,0,1,ENC_BIG_ENDIAN);
+ proto_tree_add_item(tree,hf_h248_term_wild_level,new_tvb,0,1,ENC_BIG_ENDIAN);
+ proto_tree_add_item(tree,hf_h248_term_wild_position,new_tvb,0,1,ENC_BIG_ENDIAN);
wild_term = tvb_get_guint8(new_tvb,0) & 0x80 ? GCP_WILDCARD_CHOOSE : GCP_WILDCARD_ALL;
/* limitation: assume only one wildcard is used */