artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
aa60c8c
)
typo: hexidecimal -> hexadecimal
author
tb
<tb@openbsd.org>
Fri, 23 Jun 2023 10:31:27 +0000
(10:31 +0000)
committer
tb
<tb@openbsd.org>
Fri, 23 Jun 2023 10:31:27 +0000
(10:31 +0000)
lib/libcrypto/bn/bn_convert.c
patch
|
blob
|
history
diff --git
a/lib/libcrypto/bn/bn_convert.c
b/lib/libcrypto/bn/bn_convert.c
index
1a3abbc
..
0dbe200
100644
(file)
--- a/
lib/libcrypto/bn/bn_convert.c
+++ b/
lib/libcrypto/bn/bn_convert.c
@@
-1,4
+1,4
@@
-/* $OpenBSD: bn_convert.c,v 1.
9 2023/05/28 10:34:17 jsing
Exp $ */
+/* $OpenBSD: bn_convert.c,v 1.
10 2023/06/23 10:31:27 tb
Exp $ */
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
* All rights reserved.
*
@@
-281,7
+281,7
@@
BN_asc2bn(BIGNUM **bnp, const char *s)
return 0;
}
- /* Try parsing as hex
i
decimal with a 0x prefix. */
+ /* Try parsing as hex
a
decimal with a 0x prefix. */
CBS_dup(&cbs, &cbs_hex);
if (!CBS_get_u8(&cbs_hex, &v))
goto decimal;