aboutsummaryrefslogtreecommitdiffstats
path: root/asn1/c1222
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2012-05-07 18:06:47 +0000
committerGuy Harris <guy@alum.mit.edu>2012-05-07 18:06:47 +0000
commit6eaf0037f8a73634ee8323c8015e8c69edb196df (patch)
treea6f04c916fc555dcf2b7910c067bf2f658e0d1af /asn1/c1222
parent20e4f9468f4583459d62f79e02248ab4febc3dc0 (diff)
Get rid of remaining Booleans-as-encoding-arguments in
proto_tree_add_item() calls. svn path=/trunk/; revision=42477
Diffstat (limited to 'asn1/c1222')
-rw-r--r--asn1/c1222/c1222.cnf2
1 files changed, 1 insertions, 1 deletions
diff --git a/asn1/c1222/c1222.cnf b/asn1/c1222/c1222.cnf
index f57ecd5d1a..2808a527ce 100644
--- a/asn1/c1222/c1222.cnf
+++ b/asn1/c1222/c1222.cnf
@@ -39,7 +39,7 @@ Calling-authentication-value-c1222/_untag/key-id-element BLURB = "c1222.key-id-e
offset = dissect_ber_identifier(actx->pinfo, tree, tvb, offset, &class, &pc, &tag);
offset = dissect_ber_length(actx->pinfo, tree, tvb, offset, &len, &ind);
if (tag == 0x1) { /* implicit octet string */
- tf = proto_tree_add_item(tree, hf_c1222_user_information, tvb, offset, len, FALSE);
+ tf = proto_tree_add_item(tree, hf_c1222_user_information, tvb, offset, len, ENC_NA);
epsem_tree = proto_item_add_subtree(tf, ett_c1222_epsem);
dissect_epsem(tvb, offset, len, actx->pinfo, epsem_tree);
offset += len;