Rename cred handle lifetime to endtime

And change type from OM_uint32 to time_t.
This commit is contained in:
Viktor Dukhovni
2015-04-13 18:43:15 -05:00
committed by Nicolas Williams
parent 3bb33fa6e8
commit dee03d9bee
5 changed files with 6 additions and 13 deletions

View File

@@ -100,6 +100,7 @@ static OM_uint32 acquire_initiator_cred
krb5_error_code kret;
int try_get_init_creds = 0;
time_t now;
OM_uint32 left;
keytab = NULL;
ccache = NULL;
@@ -218,11 +219,7 @@ found:
krb5_cc_close(context, ccache);
goto end;
}
/*
* XXX: This is persistent state, and needs to be absolute not
* relative time, and so the field name is wrong!
*/
handle->lifetime = now + left;
handle->endtime = now + left;
handle->ccache = ccache;
ret = GSS_S_COMPLETE;
kret = 0;