From 260133584afd9d6c7b1179946eb5cb9e1cb15fb0 Mon Sep 17 00:00:00 2001 From: Steffen Jaeckel Date: Mon, 19 Nov 2012 14:56:34 +0100 Subject: [PATCH] fixed comment --- bn_mp_read_radix.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bn_mp_read_radix.c b/bn_mp_read_radix.c index 1f2629f..e82fc3a 100644 --- a/bn_mp_read_radix.c +++ b/bn_mp_read_radix.c @@ -44,7 +44,7 @@ int mp_read_radix (mp_int * a, const char *str, int radix) /* process each digit of the string */ while (*str) { - /* if the radix < 36 the conversion is case insensitive + /* if the radix <= 36 the conversion is case insensitive * this allows numbers like 1AB and 1ab to represent the same value * [e.g. in hex] */