aboutsummaryrefslogtreecommitdiffstats
path: root/asn1.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2003-04-28 00:31:26 +0000
committerGuy Harris <guy@alum.mit.edu>2003-04-28 00:31:26 +0000
commit4b4b030e514b884aaa0d50ba2fe5df830e78f5b0 (patch)
tree8ef778e248c57fd65ce4fa8ebac4997c5fcd933e /asn1.h
parent4915f5e6a26bc3da6330f2251c979827b2bfa33e (diff)
From Matthijs Melchior: fix "asn1_bits_decode()", and make its API more
closely resemble that of other decode routines. svn path=/trunk/; revision=7589
Diffstat (limited to 'asn1.h')
-rw-r--r--asn1.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/asn1.h b/asn1.h
index 865fda249d..22f78f15aa 100644
--- a/asn1.h
+++ b/asn1.h
@@ -1,7 +1,7 @@
/* asn1.h
* Definitions for ASN.1 BER dissection
*
- * $Id: asn1.h,v 1.12 2003/04/25 05:39:33 guy Exp $
+ * $Id: asn1.h,v 1.13 2003/04/28 00:31:26 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -129,8 +129,8 @@ extern int asn1_int32_decode (ASN1_SCK *asn1, gint32 *integer, guint *nbytes);
extern int asn1_uint32_value_decode (ASN1_SCK *asn1, int enc_len,
guint *integer);
extern int asn1_uint32_decode (ASN1_SCK *asn1, guint32 *integer, guint *nbytes);
-extern int asn1_bits_decode (ASN1_SCK *asn1, int eoc, guchar **bits,
- guint *len, guchar *unused);
+extern int asn1_bits_decode (ASN1_SCK *asn1, int enc_len, guchar **bits,
+ guint *len, guchar *unused);
extern int asn1_string_value_decode (ASN1_SCK *asn1, int enc_len,
guchar **octets);
extern int asn1_string_decode (ASN1_SCK *asn1, guchar **octets, guint *str_len,