(fcc_store_cred): use [libdefaults]fcc-mit-ticketflags=boolean to

decide what format to write the fcc in. Default to mit version (aka
heimdal 0.7)


git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@13486 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2004-03-09 17:40:05 +00:00
parent a73db09513
commit cd4be77fc7

View File

@@ -405,7 +405,12 @@ fcc_store_cred(krb5_context context,
sp = krb5_storage_from_fd(fd);
krb5_storage_set_eof_code(sp, KRB5_CC_END);
storage_set_flags(context, sp, FCACHE(id)->version);
ret = krb5_store_creds(sp, creds);
if (krb5_config_get_bool_default(context, NULL, TRUE,
"libdefaults",
"fcc-mit-ticketflags"))
ret = _krb5_store_creds_heimdal_0_7(sp, creds);
else
ret = _krb5_store_creds_heimdal_pre_0_7(sp, creds);
krb5_storage_free(sp);
}
fcc_unlock(context, fd);