]> git.ipfire.org Git - thirdparty/openssl.git/blobdiff - crypto/asn1/a_time.c
Fix Typos
[thirdparty/openssl.git] / crypto / asn1 / a_time.c
index 60df8991480ef971330ec8c9da296e73a9e7d375..491909b08ec8da8e466805ad515770ff6e50a89c 100644 (file)
@@ -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;
 }