aboutsummaryrefslogtreecommitdiffstats
path: root/asn1/cms/cms.cnf
diff options
context:
space:
mode:
authorJörg Mayer <jmayer@loplof.de>2007-08-24 07:12:04 +0000
committerJörg Mayer <jmayer@loplof.de>2007-08-24 07:12:04 +0000
commitb312e64f6a6cec4782e8198396e906c581a86d82 (patch)
tree565a079aab3cf001d87d828937a93b3bc752c581 /asn1/cms/cms.cnf
parent1f06d6542407b97c877b8c8c16a36e8c2ca3a1d5 (diff)
get_ber_length doesn't need the tree argument, get rid of it.
Rebuild asn1 dissectors. svn path=/trunk/; revision=22627
Diffstat (limited to 'asn1/cms/cms.cnf')
-rw-r--r--asn1/cms/cms.cnf4
1 files changed, 2 insertions, 2 deletions
diff --git a/asn1/cms/cms.cnf b/asn1/cms/cms.cnf
index 7aa44ebfe8..8de70fb137 100644
--- a/asn1/cms/cms.cnf
+++ b/asn1/cms/cms.cnf
@@ -93,7 +93,7 @@ EncryptedContentInfo/contentType encryptedContentType
offset = dissect_cms_OCTET_STRING(FALSE, tvb, offset, actx, NULL, hf_cms_eContent);
pdu_offset = get_ber_identifier(tvb, pdu_offset, &class, &pc, &tag);
- content_offset = pdu_offset = get_ber_length(tree, tvb, pdu_offset, &len, &ind);
+ content_offset = pdu_offset = get_ber_length(tvb, pdu_offset, &len, &ind);
pdu_offset = call_ber_oid_callback(object_identifier_id, tvb, pdu_offset, actx->pinfo, top_tree ? top_tree : tree);
/* save the content for checking the message digest */
@@ -133,7 +133,7 @@ EncryptedContentInfo/contentType encryptedContentType
/* move past TLV */
old_offset = get_ber_identifier(tvb, old_offset, NULL, NULL, NULL);
- old_offset = get_ber_length(tree, tvb, old_offset, NULL, NULL);
+ old_offset = get_ber_length(tvb, old_offset, NULL, NULL);
if(content_tvb)
cms_verify_msg_digest(pi, content_tvb, x509af_get_last_algorithm_id(), tvb, old_offset);