summaryrefslogtreecommitdiff
path: root/asn1/ldap/ldap.cnf
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2012-05-08 00:15:53 +0000
committerGuy Harris <guy@alum.mit.edu>2012-05-08 00:15:53 +0000
commit1fca484224eef7ce1714ef536d9947cf6d93cb85 (patch)
treed9d24864750a8379650869b3fbb26434ee537849 /asn1/ldap/ldap.cnf
parent551d8aaacfd852a456650b23e71bd31b07bdfec4 (diff)
downloadwireshark-1fca484224eef7ce1714ef536d9947cf6d93cb85.tar.gz
Get rid of remaining Booleans-as-encoding-arguments in
proto_tree_add_item() calls. Update the RFC number for LDAP. svn path=/trunk/; revision=42493
Diffstat (limited to 'asn1/ldap/ldap.cnf')
-rw-r--r--asn1/ldap/ldap.cnf2
1 files changed, 1 insertions, 1 deletions
diff --git a/asn1/ldap/ldap.cnf b/asn1/ldap/ldap.cnf
index 46e3a89650..77576d12d5 100644
--- a/asn1/ldap/ldap.cnf
+++ b/asn1/ldap/ldap.cnf
@@ -471,7 +471,7 @@ ldap_conv_info_t *ldap_info;
/* first check if we have a custom attribute type configured */
if ((hf_id = get_hf_for_header (attr_type)) != NULL)
- proto_tree_add_item (tree, *hf_id, next_tvb, 0, tvb_length_remaining(next_tvb, 0), FALSE);
+ proto_tree_add_item (tree, *hf_id, next_tvb, 0, tvb_length_remaining(next_tvb, 0), ENC_UTF_8|ENC_NA);
/* if we have an attribute type that isn't binary see if there is a better dissector */
else if(!attr_type || !next_tvb || !dissector_try_string(ldap_name_dissector_table, attr_type, next_tvb, actx->pinfo, tree)) {