asn1_encode.c: Make the magic Macintosh EPOCH offset be 70 years
authorTheodore Tso <tytso@mit.edu>
Thu, 2 Jul 1998 22:36:50 +0000 (22:36 +0000)
committerTheodore Tso <tytso@mit.edu>
Thu, 2 Jul 1998 22:36:50 +0000 (22:36 +0000)
instead of 66 years, since CodeWarrior Pro 2 now bases everything off
of 1900.

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@10619 dc483132-0cff-0310-8789-dd5450dbe970

src/lib/krb5/asn.1/ChangeLog
src/lib/krb5/asn.1/asn1_encode.c

index de87d7766d40df5dfb38ff2fd3a837d750665b0b..a42ad235c3448702535906ab5e735485adb00a7d 100644 (file)
@@ -1,3 +1,9 @@
+Thu Jul  2 15:30:25 1998  Theodore Y. Ts'o  <tytso@mit.edu>
+
+       * asn1_encode.c: Make the magic Macintosh EPOCH offset be 70 years
+               instead of 66 years, since CodeWarrior Pro 2 now bases
+               everything off of 1900.
+
 Thu Apr 16 17:01:27 1998  Tom Yu  <tlyu@mit.edu>
 
        * asn1_encode.c (asn1_encode_generaltime): Sanity check the return
index 826fc94af07f01b0812f1f7cf0d511a4fb30eb3a..aa8049e3794580f572816c8fec606d7b291d5716 100644 (file)
@@ -184,7 +184,7 @@ asn1_error_code asn1_encode_ia5string(buf, len, val, retlen)
 }
 
 #ifdef _MACINTOSH
-#define EPOCH ((66 * 365 * 24 * 60 * 60) + (17 *  24 * 60 * 60) + (getTimeZoneOffset() * 60 * 60))
+#define EPOCH ((70 * 365 * 24 * 60 * 60) + (17 *  24 * 60 * 60) + (getTimeZoneOffset() * 60 * 60))
 #else
 #define EPOCH (0)
 #endif