Rename context handle lifetime to endtime
This commit is contained in:
@@ -34,9 +34,9 @@
|
||||
#include "gsskrb5_locl.h"
|
||||
|
||||
OM_uint32 GSSAPI_CALLCONV
|
||||
_gsskrb5_export_sec_context (
|
||||
OM_uint32 * minor_status,
|
||||
gss_ctx_id_t * context_handle,
|
||||
_gsskrb5_export_sec_context(
|
||||
OM_uint32 *minor_status,
|
||||
gss_ctx_id_t *context_handle,
|
||||
gss_buffer_t interprocess_token
|
||||
)
|
||||
{
|
||||
@@ -204,7 +204,11 @@ _gsskrb5_export_sec_context (
|
||||
*minor_status = kret;
|
||||
goto failure;
|
||||
}
|
||||
kret = krb5_store_int32 (sp, ctx->lifetime);
|
||||
/*
|
||||
* XXX We should put a 64-bit int here, but we don't have a
|
||||
* krb5_store_int64() yet.
|
||||
*/
|
||||
kret = krb5_store_int32 (sp, ctx->endtime);
|
||||
if (kret) {
|
||||
*minor_status = kret;
|
||||
goto failure;
|
||||
|
Reference in New Issue
Block a user