summaryrefslogtreecommitdiff
path: root/asn1/pkcs12/packet-pkcs12-template.c
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/pkcs12/packet-pkcs12-template.c
parent1f06d6542407b97c877b8c8c16a36e8c2ca3a1d5 (diff)
downloadwireshark-b312e64f6a6cec4782e8198396e906c581a86d82.tar.gz
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/pkcs12/packet-pkcs12-template.c')
-rw-r--r--asn1/pkcs12/packet-pkcs12-template.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/asn1/pkcs12/packet-pkcs12-template.c b/asn1/pkcs12/packet-pkcs12-template.c
index f5b2df2579..16989ca7e2 100644
--- a/asn1/pkcs12/packet-pkcs12-template.c
+++ b/asn1/pkcs12/packet-pkcs12-template.c
@@ -397,7 +397,7 @@ static int strip_octet_string(tvbuff_t *tvb)
/* before proceeding */
offset = get_ber_identifier(tvb, 0, &class, &pc, &tag);
- offset = get_ber_length(NULL, tvb, offset, &len, &ind);
+ offset = get_ber_length(tvb, offset, &len, &ind);
if((class == BER_CLASS_UNI) && (tag == BER_UNI_TAG_OCTETSTRING))
return offset;