corrected types
authorNikos Mavrogiannopoulos <nmav@gnutls.org>
Sun, 28 Oct 2012 13:31:12 +0000 (14:31 +0100)
committerNikos Mavrogiannopoulos <nmav@gnutls.org>
Sun, 28 Oct 2012 13:35:44 +0000 (14:35 +0100)
lib/ASN1.y

index 18c93b3..69f43b5 100644 (file)
@@ -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) 
 {