diff options
author | FdaSilvaYY <fdasilvayy@gmail.com> | 2022-08-23 20:45:13 +0200 |
---|---|---|
committer | Pauli <pauli@openssl.org> | 2022-10-12 07:55:28 +0200 |
commit | 9929c81702381bff54f833d6fe0a3304f4e2b635 (patch) | |
tree | 7526b6e7a38f56eda999a11db3c74858ca90bde0 /apps/dhparam.c | |
parent | Fix various typos, repeated words, align some spelling to LDP. (diff) | |
download | openssl-9929c81702381bff54f833d6fe0a3304f4e2b635.tar.xz openssl-9929c81702381bff54f833d6fe0a3304f4e2b635.zip |
apps & al : Fix various typos, repeated words, align some spelling to LDP.
Mostly revamped from #16712
- fall thru -> fall through
- time stamp -> timestamp
- host name -> hostname
- ipv6 -> IPv6
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 'apps/dhparam.c')
-rw-r--r-- | apps/dhparam.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/dhparam.c b/apps/dhparam.c index 93a858d746..a41e70fe38 100644 --- a/apps/dhparam.c +++ b/apps/dhparam.c @@ -283,7 +283,7 @@ int dhparam_main(int argc, char **argv) * because, unlike PEM, there is no header to declare what * the contents of the DER file are. The decoders just try * and guess. Unfortunately with DHX key types they may guess - * wrong and think we have a DSA keytype. Therefore we try + * wrong and think we have a DSA keytype. Therefore, we try * both DH and DHX sequentially. */ keytype = "DHX"; @@ -365,7 +365,7 @@ int dhparam_main(int argc, char **argv) } /* - * Historically we had the low level call DSA_dup_DH() to do this. + * Historically we had the low-level call DSA_dup_DH() to do this. * That is now deprecated with no replacement. Since we still need to do this * for backwards compatibility reasons, we do it "manually". */ |