these are the same, on others....
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@4727
dc483132-0cff-0310-8789-
dd5450dbe970
+Wed Dec 7 00:07:46 1994 <tytso@rsx-11.mit.edu>
+
+ * dumpv4.c (v4_print_time): gmtime expects a pointer to a time_t,
+ not a long. On most systems these are the same, on
+ others....
+
Wed Nov 16 01:03:42 1994 Mark Eichin (eichin@cygnus.com)
* dumpv4.c: new file. New command dump_v4db which creates a v4
{
struct tm *tm;
struct tm *gmtime();
- tm = gmtime((long *)&timeval);
+ tm = gmtime((time_t *)&timeval);
fprintf(file, " %04d%02d%02d%02d%02d",
tm->tm_year < 1900 ? tm->tm_year + 1900: tm->tm_year,
tm->tm_mon + 1,