* mac_time.c: Don't use the type KRB_INT32; it was leaked from
authorTom Yu <tlyu@mit.edu>
Mon, 27 Oct 1997 06:01:52 +0000 (06:01 +0000)
committerTom Yu <tlyu@mit.edu>
Mon, 27 Oct 1997 06:01:52 +0000 (06:01 +0000)
des.h and was just the wrong answer.  Use long instead.  While
we're at it, declare gettimeofdaynet_no_offset() as static because
we have no real need to export it.

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

src/lib/krb4/ChangeLog
src/lib/krb4/mac_time.c

index f9c2b8c0cd4a4b01492246b41e89680e38f4917e..0528b154aeaf736cbf9c8f9f55ceb3a92e9d92fc 100644 (file)
@@ -2,6 +2,13 @@ Tue Oct 21 09:02:51 1997  Ezra Peisach  <epeisach@mit.edu>
 
        * kparse.c: Include stdlib.h if present (for malloc prototyp)
 
+Fri Oct 17 20:33:17 1997  Tom Yu  <tlyu@mit.edu>
+
+       * mac_time.c: Don't use the type KRB_INT32; it was leaked from
+       des.h and was just the wrong answer.  Use long instead.  While
+       we're at it, declare gettimeofdaynet_no_offset() as static because
+       we have no real need to export it.
+
 Tue Sep 30 19:00:33 1997  Tom Yu  <tlyu@mit.edu>
 
        * tkt_string.c: Replace HAS_STDLIB_H with something more sane.
index 91f09e5aa7cae1d1dedae22564f1f2853e837b15..28a56223dc8496d27b7293e5cda4aa2b0e5e9de8 100644 (file)
@@ -43,7 +43,7 @@
 
 /* returns the offset in hours between the mac local time and the GMT  */
 
-unsigned KRB_INT32
+unsigned long
 getTimeZoneOffset()
 {
        MachineLocation         macLocation;
@@ -60,7 +60,8 @@ getTimeZoneOffset()
 
 /* Returns the GMT in seconds using the Unix epoch, ie. Net time */
 
-unsigned KRB_INT32 gettimeofdaynet_no_offset()
+static unsigned long
+gettimeofdaynet_no_offset()
 {
        time_t the_time;