summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/bn
diff options
context:
space:
mode:
authorkrw <>2016-03-15 20:50:22 +0000
committerkrw <>2016-03-15 20:50:22 +0000
commit4895438d43fba93c4ffc4bf8cfdc8c2a46cc8073 (patch)
tree6500824b8067c795c51a0528b781ff705870a104 /src/lib/libcrypto/bn
parent8daa7bac4b58e4f955388e48607a12538c45fc40 (diff)
downloadopenbsd-4895438d43fba93c4ffc4bf8cfdc8c2a46cc8073.tar.gz
openbsd-4895438d43fba93c4ffc4bf8cfdc8c2a46cc8073.tar.bz2
openbsd-4895438d43fba93c4ffc4bf8cfdc8c2a46cc8073.zip
'accomodate' -> 'accommodate' in comments.
Started by diff from Mical Mazurek.
Diffstat (limited to 'src/lib/libcrypto/bn')
-rw-r--r--src/lib/libcrypto/bn/bn_lib.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/bn/bn_lib.c b/src/lib/libcrypto/bn/bn_lib.c
index 311ec2044d..17f4ae89da 100644
--- a/src/lib/libcrypto/bn/bn_lib.c
+++ b/src/lib/libcrypto/bn/bn_lib.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: bn_lib.c,v 1.35 2016/03/04 16:23:30 deraadt Exp $ */ 1/* $OpenBSD: bn_lib.c,v 1.36 2016/03/15 20:50:22 krw Exp $ */
2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) 2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3 * All rights reserved. 3 * All rights reserved.
4 * 4 *
@@ -295,7 +295,7 @@ bn_expand_internal(const BIGNUM *b, int words)
295 * The fact that the loop is unrolled 295 * The fact that the loop is unrolled
296 * 4-wise is a tribute to Intel. It's 296 * 4-wise is a tribute to Intel. It's
297 * the one that doesn't have enough 297 * the one that doesn't have enough
298 * registers to accomodate more data. 298 * registers to accommodate more data.
299 * I'd unroll it 8-wise otherwise:-) 299 * I'd unroll it 8-wise otherwise:-)
300 * 300 *
301 * <appro@fy.chalmers.se> 301 * <appro@fy.chalmers.se>