diff options
author | FdaSilvaYY <fdasilvayy@gmail.com> | 2022-08-23 20:33:58 +0200 |
---|---|---|
committer | Pauli <pauli@openssl.org> | 2022-10-12 16:55:01 +1100 |
commit | 1567a821a4616f59748fa8982724f88e542867d6 (patch) | |
tree | 76cd3a15990e2c7c8e815555bc39c39f55326f87 /crypto/asn1 | |
parent | 8b5424eae5577809264e73a229fcc4c384611fae (diff) | |
download | openssl-new-1567a821a4616f59748fa8982724f88e542867d6.tar.gz |
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/asn1')
-rw-r--r-- | crypto/asn1/a_time.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/asn1/a_time.c b/crypto/asn1/a_time.c index 4459a68156..4f51a6bc4a 100644 --- a/crypto/asn1/a_time.c +++ b/crypto/asn1/a_time.c @@ -92,7 +92,7 @@ int ossl_asn1_time_to_tm(struct tm *tm, const ASN1_TIME *d) * * 1. "seconds" is a 'MUST' * 2. "Zulu" timezone is a 'MUST' - * 3. "+|-" is not allowed to indicate a time zone + * 3. "+|-" is not allowed to indicate a timezone */ if (d->type == V_ASN1_UTCTIME) { if (d->flags & ASN1_STRING_FLAG_X509_TIME) { |