diff options
author | FdaSilvaYY <fdasilvayy@gmail.com> | 2022-08-23 20:33:58 +0200 |
---|---|---|
committer | Pauli <pauli@openssl.org> | 2022-10-12 07:55:01 +0200 |
commit | 1567a821a4616f59748fa8982724f88e542867d6 (patch) | |
tree | 76cd3a15990e2c7c8e815555bc39c39f55326f87 /crypto/bn | |
parent | eckey_priv_encode(): Call ASN1_STRING_free() only on an ASN1_STRING (diff) | |
download | openssl-1567a821a4616f59748fa8982724f88e542867d6.tar.xz openssl-1567a821a4616f59748fa8982724f88e542867d6.zip |
crypto: Fix various typos, repeated words, align some spelling to LDP.
partially revamped from #16712
- fall thru -> fall through
- time stamp -> timestamp
- file name -> filename
- host name -> hostname
Reviewed-by: Tomas Mraz <tomas@openssl.org>
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/19059)
Diffstat (limited to 'crypto/bn')
-rw-r--r-- | crypto/bn/bn_mul.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/bn/bn_mul.c b/crypto/bn/bn_mul.c index dc6b6f5a12..c3864b8c69 100644 --- a/crypto/bn/bn_mul.c +++ b/crypto/bn/bn_mul.c @@ -115,12 +115,12 @@ BN_ULONG bn_sub_part_words(BN_ULONG *r, r[1] = a[1]; if (--dl <= 0) break; - /* fall thru */ + /* fall through */ case 2: r[2] = a[2]; if (--dl <= 0) break; - /* fall thru */ + /* fall through */ case 3: r[3] = a[3]; if (--dl <= 0) |