diff options
author | Greg Hudson <ghudson@mit.edu> | 2009-07-27 17:41:19 +0000 |
---|---|---|
committer | Greg Hudson <ghudson@mit.edu> | 2009-07-27 17:41:19 +0000 |
commit | 4df1b1047b8099a070cda91797af58eafb01f024 (patch) | |
tree | 88db1a40a3c91c752078e727f79f4b9507c44a06 /src/include/k5-int.h | |
parent | aa300905732f9952ed197fcefe1689e38abadc4c (diff) | |
download | krb5-4df1b1047b8099a070cda91797af58eafb01f024.tar.gz krb5-4df1b1047b8099a070cda91797af58eafb01f024.tar.xz krb5-4df1b1047b8099a070cda91797af58eafb01f024.zip |
Use zero-terminated enctype lists in the context structure instead of
counted lists, to reduce impedance mismatches.
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@22456 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/include/k5-int.h')
-rw-r--r-- | src/include/k5-int.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/include/k5-int.h b/src/include/k5-int.h index be3d1a9bf..d4407b99d 100644 --- a/src/include/k5-int.h +++ b/src/include/k5-int.h @@ -1322,10 +1322,8 @@ typedef struct _kdb5_dal_handle kdb5_dal_handle; struct _kdb_log_context; struct _krb5_context { krb5_magic magic; - krb5_enctype *in_tkt_ktypes; - unsigned int in_tkt_ktype_count; - krb5_enctype *tgs_ktypes; - unsigned int tgs_ktype_count; + krb5_enctype *in_tkt_etypes; + krb5_enctype *tgs_etypes; struct _krb5_os_context os_context; char *default_realm; profile_t profile; |