summaryrefslogtreecommitdiff
path: root/lib/libcrypto/asn1/a_mbstr.c
diff options
context:
space:
mode:
authorJason McIntyre <jmc@cvs.openbsd.org>2022-12-26 07:18:54 +0000
committerJason McIntyre <jmc@cvs.openbsd.org>2022-12-26 07:18:54 +0000
commit5db55c25df447352f6f017a3cd33336bd5c99ded (patch)
tree91fd58d0a8b09e013ba3a808d7b3b6c82bfe6b23 /lib/libcrypto/asn1/a_mbstr.c
parenta00adb4d80b177e06c5272391e412b15d9e962ab (diff)
spelling fixes; from paul tagliamonte
i removed the arithmetics -> arithmetic changes, as i felt they were not clearly correct ok tb
Diffstat (limited to 'lib/libcrypto/asn1/a_mbstr.c')
-rw-r--r--lib/libcrypto/asn1/a_mbstr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libcrypto/asn1/a_mbstr.c b/lib/libcrypto/asn1/a_mbstr.c
index 06b674ef413..32b39ad5dbb 100644
--- a/lib/libcrypto/asn1/a_mbstr.c
+++ b/lib/libcrypto/asn1/a_mbstr.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: a_mbstr.c,v 1.25 2022/11/26 16:08:50 tb Exp $ */
+/* $OpenBSD: a_mbstr.c,v 1.26 2022/12/26 07:18:51 jmc Exp $ */
/* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
* project 1999.
*/
@@ -276,7 +276,7 @@ traverse_string(const unsigned char *p, int len, int inform,
case MBSTRING_BMP:
value = *p++ << 8;
value |= *p++;
- /* BMP is explictly defined to not support surrogates */
+ /* BMP is explicitly defined to not support surrogates */
if (UNICODE_IS_SURROGATE(value))
return -1;
len -= 2;