diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2023-06-23 10:31:28 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2023-06-23 10:31:28 +0000 |
commit | 0032818f99343a1d793446f15471f3e8a4f7bd81 (patch) | |
tree | 27da081d8eb14c14c12e4ba323a7cf2a344e55e8 | |
parent | 929efb061f4df74cb5c67fe61dc45ce8208a34c9 (diff) |
typo: hexidecimal -> hexadecimal
-rw-r--r-- | lib/libcrypto/bn/bn_convert.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libcrypto/bn/bn_convert.c b/lib/libcrypto/bn/bn_convert.c index 1a3abbc603d..0dbe20046b8 100644 --- 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 hexidecimal with a 0x prefix. */ + /* Try parsing as hexadecimal with a 0x prefix. */ CBS_dup(&cbs, &cbs_hex); if (!CBS_get_u8(&cbs_hex, &v)) goto decimal; |