aboutsummaryrefslogtreecommitdiffstats
path: root/libasn1fix/asn1fix_crange.c
diff options
context:
space:
mode:
authorLev Walkin <vlm@lionet.info>2004-09-29 13:17:17 +0000
committerLev Walkin <vlm@lionet.info>2004-09-29 13:17:17 +0000
commitb8108ec5adb821495e073a01ea1a8124f5ee9f3f (patch)
tree43f3f526f89687c96cb8a700424a043b2d75c5c5 /libasn1fix/asn1fix_crange.c
parentb25fa06e2084b42d7382f21ed678801885bed2b6 (diff)
different type for the big integer
Diffstat (limited to 'libasn1fix/asn1fix_crange.c')
-rw-r--r--libasn1fix/asn1fix_crange.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libasn1fix/asn1fix_crange.c b/libasn1fix/asn1fix_crange.c
index f6e11113..974aa21c 100644
--- a/libasn1fix/asn1fix_crange.c
+++ b/libasn1fix/asn1fix_crange.c
@@ -352,7 +352,7 @@ static int _range_fill(asn1p_value_t *val, const asn1cnst_range_t *minmax, asn1c
* However, (FROM("abc".."def")) is forbidden.
* See also 47.4.4.
*/
- asn1_integer_t vmin, vmax;
+ asn1c_integer_t vmin, vmax;
vmin = vmax = *p;
for(; p < pend; p++) {
asn1cnst_range_t *nr = _range_new();