aboutsummaryrefslogtreecommitdiffstats
path: root/libasn1parser/asn1p_l.c
diff options
context:
space:
mode:
authorLev Walkin <vlm@lionet.info>2004-09-29 13:18:09 +0000
committerLev Walkin <vlm@lionet.info>2004-09-29 13:18:09 +0000
commitd21c5058fc0695a439e72706a4a0bf02f4ed8044 (patch)
tree9b43e74bc0aebf0c57001780aa2cb11d217fddd3 /libasn1parser/asn1p_l.c
parentb8108ec5adb821495e073a01ea1a8124f5ee9f3f (diff)
different type name for the big integer
Diffstat (limited to 'libasn1parser/asn1p_l.c')
-rw-r--r--libasn1parser/asn1p_l.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libasn1parser/asn1p_l.c b/libasn1parser/asn1p_l.c
index 2d0c3075..93a12c34 100644
--- a/libasn1parser/asn1p_l.c
+++ b/libasn1parser/asn1p_l.c
@@ -1808,7 +1808,7 @@ int asn1p_lexer_pedantic_1990 = 0;
int asn1p_lexer_types_year = 0;
int asn1p_lexer_constructs_year = 0;
static int _check_dashes(char *ptr);
-static asn1_integer_t asn1p_atoi(char *ptr); /* errno is either 0 or ERANGE */
+static asn1c_integer_t asn1p_atoi(char *ptr); /* errno is either 0 or ERANGE */
/*
* Check that the type is defined in the year of the standard choosen.
@@ -3957,9 +3957,9 @@ _check_dashes(char *ptr) {
return 0;
}
-static asn1_integer_t
+static asn1c_integer_t
asn1p_atoi(char *ptr) {
- asn1_integer_t value;
+ asn1c_integer_t value;
errno = 0; /* Clear the error code */
if(sizeof(value) <= sizeof(int)) {