diff options
author | Antoine Cœur <coeur@gmx.fr> | 2019-07-02 10:04:04 +0200 |
---|---|---|
committer | Dr. Matthias St. Pierre <Matthias.St.Pierre@ncp-e.com> | 2019-07-02 14:22:29 +0200 |
commit | c2969ff6e70b10f71fbd97c1d0b0cffc92bd69df (patch) | |
tree | 31e1c94c18598574c6074468cffbf16602f98a15 /crypto/asn1 | |
parent | test/p_test.c: silence -Wstringop-overflow (diff) | |
download | openssl-c2969ff6e70b10f71fbd97c1d0b0cffc92bd69df.tar.xz openssl-c2969ff6e70b10f71fbd97c1d0b0cffc92bd69df.zip |
Fix Typos
CLA: trivial
Reviewed-by: Richard Levitte <levitte@openssl.org>
Reviewed-by: Matthias St. Pierre <Matthias.St.Pierre@ncp-e.com>
(Merged from https://github.com/openssl/openssl/pull/9288)
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 60df899148..491909b08e 100644 --- a/crypto/asn1/a_time.c +++ b/crypto/asn1/a_time.c @@ -67,7 +67,7 @@ static void determine_days(struct tm *tm) } c = y / 100; y %= 100; - /* Zeller's congruance */ + /* Zeller's congruence */ tm->tm_wday = (d + (13 * m) / 5 + y + y / 4 + c / 4 + 5 * c + 6) % 7; } |