*** conv_creds.c.orig Tue Aug 5 19:29:09 2003 --- conv_creds.c Tue Aug 5 19:25:30 2003 *************** *** 127,136 **** sizeof(C_Block)); /* V4 has no concept of authtime or renew_till, so ignore them */ ! v4creds->issue_date = v5creds->times.starttime; ! v4creds->lifetime = krb5int_krb_time_to_life(v5creds->times.starttime, v5creds->times.endtime); ! endtime = krb5int_krb_life_to_time(v5creds->times.starttime, v4creds->lifetime); /* * Adjust start time backwards to deal with rounding up in --- 127,138 ---- sizeof(C_Block)); /* V4 has no concept of authtime or renew_till, so ignore them */ ! if (ret = krb5_timeofday(context, &(v4creds->issue_date)) { ! return ret; ! } ! v4creds->lifetime = krb5int_krb_time_to_life(v4creds->issue_date, v5creds->times.endtime); ! endtime = krb5int_krb_life_to_time(v4creds->issue_date, v4creds->lifetime); /* * Adjust start time backwards to deal with rounding up in