diff options
| author | Sam Hartman <hartmans@mit.edu> | 2004-04-16 19:10:24 +0000 |
|---|---|---|
| committer | Sam Hartman <hartmans@mit.edu> | 2004-04-16 19:10:24 +0000 |
| commit | d02c7df06dec5db1915e2715e27fdf733634ecbd (patch) | |
| tree | da4efb006758ebc566b63f37fac20a5547230ed0 /src/include | |
| parent | 51424093a86bf4a9ef864d0749ac122e16fd8b0e (diff) | |
| download | krb5-d02c7df06dec5db1915e2715e27fdf733634ecbd.tar.gz krb5-d02c7df06dec5db1915e2715e27fdf733634ecbd.tar.xz krb5-d02c7df06dec5db1915e2715e27fdf733634ecbd.zip | |
krb5_get_in_tkt ignores lifetime
John Hascall reports that the emulation of krb5_get_in_tkt is
incomplete and does not handle lifetimes set in the input credentials.
He provided a patch to fix this.
Ticket: new
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@16258 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/ChangeLog | 5 | ||||
| -rw-r--r-- | src/include/k5-int.h | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/src/include/ChangeLog b/src/include/ChangeLog index 6b87eda61..cb87feb7a 100644 --- a/src/include/ChangeLog +++ b/src/include/ChangeLog @@ -1,3 +1,8 @@ +2004-04-16 Sam Hartman <hartmans@mit.edu> + + * k5-int.h: krb5int_populate_gic_opt now takes credentials so it + can get lifetime related options out of them + 2004-04-02 Ken Raeburn <raeburn@mit.edu> * k5-int.h (krb5int_prng_cleanup): Declare. diff --git a/src/include/k5-int.h b/src/include/k5-int.h index d4e0f85b5..bd79b6804 100644 --- a/src/include/k5-int.h +++ b/src/include/k5-int.h @@ -957,7 +957,7 @@ krb5_get_init_creds void krb5int_populate_gic_opt ( krb5_context, krb5_get_init_creds_opt *, krb5_flags options, krb5_address * const *addrs, krb5_enctype *ktypes, - krb5_preauthtype *pre_auth_types); + krb5_preauthtype *pre_auth_types, krb5_creds *creds); krb5_error_code krb5_do_preauth |
