Commit 260133584afd9d6c7b1179946eb5cb9e1cb15fb0

Steffen Jaeckel 2012-11-19T14:56:34

fixed comment

1
2
3
4
5
6
7
8
9
10
11
12
13
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]
      */