summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@gnutls.org>2012-10-28 14:31:12 +0100
committerNikos Mavrogiannopoulos <nmav@gnutls.org>2012-10-28 14:35:44 +0100
commit3a7e2d58be4bffbb2506f61b8be4f9da405b000b (patch)
treef4c11d17c47da19196d867bf9d9c2b56a09a4de0 /lib
parent58afc050dac52b2d2c56869a2f139729f666b740 (diff)
downloadlibtasn1-3a7e2d58be4bffbb2506f61b8be4f9da405b000b.tar.gz
corrected types
Diffstat (limited to 'lib')
-rw-r--r--lib/ASN1.y6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/ASN1.y b/lib/ASN1.y
index 18c93b3..69f43b5 100644
--- a/lib/ASN1.y
+++ b/lib/ASN1.y
@@ -34,7 +34,7 @@
static FILE *file_asn1; /* Pointer to file to parse */
static int result_parse; /* result of the parser
algorithm */
-static asn1_node_t p_tree; /* pointer to the root of the
+static asn1_node p_tree; /* pointer to the root of the
structure created by the
parser*/
static unsigned long lineNumber; /* line number describing the
@@ -57,7 +57,7 @@ static int _asn1_yylex(void);
%union {
unsigned int constant;
char str[ASN1_MAX_NAME_SIZE+1];
- asn1_node_t node;
+ asn1_node node;
}
@@ -578,7 +578,7 @@ _asn1_create_errorDescription(int error,char *errorDescription)
* characters.
**/
int
-asn1_parser2tree(const char *file_name, asn1_node_t *definitions,
+asn1_parser2tree(const char *file_name, asn1_node *definitions,
char *errorDescription)
{