aboutsummaryrefslogtreecommitdiffstats
path: root/asn1.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2002-06-16 00:53:20 +0000
committerGuy Harris <guy@alum.mit.edu>2002-06-16 00:53:20 +0000
commit3a407d9567a2443401eef9445cb1e228dd02008b (patch)
treede35242e1888899aa25b343c56bc89a5616a7eca /asn1.h
parent561aaa66e05e2eff2ccd4cb38488b1023aa032c6 (diff)
From Chris Waters: don't use "bool" as a variable name or structure
member, as it's a C++ keyword. svn path=/trunk/; revision=5677
Diffstat (limited to 'asn1.h')
-rw-r--r--asn1.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/asn1.h b/asn1.h
index f0bb4133fb..949611e4b6 100644
--- a/asn1.h
+++ b/asn1.h
@@ -1,7 +1,7 @@
/* asn1.h
* Definitions for ASN.1 BER dissection
*
- * $Id: asn1.h,v 1.7 2002/03/12 10:37:01 guy Exp $
+ * $Id: asn1.h,v 1.8 2002/06/16 00:53:17 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -122,7 +122,7 @@ int asn1_header_decode(ASN1_SCK *asn1, guint *cls, guint *con, guint *tag,
int asn1_eoc (ASN1_SCK *asn1, int eoc);
int asn1_eoc_decode (ASN1_SCK *asn1, int eoc);
int asn1_null_decode (ASN1_SCK *asn1, int enc_len);
-int asn1_bool_decode (ASN1_SCK *asn1, int enc_len, gboolean *bool);
+int asn1_bool_decode (ASN1_SCK *asn1, int enc_len, gboolean *boolean);
int asn1_int32_value_decode (ASN1_SCK *asn1, int enc_len, gint32 *integer);
int asn1_int32_decode (ASN1_SCK *asn1, gint32 *integer, guint *nbytes);
int asn1_uint32_value_decode (ASN1_SCK *asn1, int enc_len, guint *integer);