summaryrefslogtreecommitdiffstats
path: root/src/lib/krb5/ccache/file/fcc.h
diff options
context:
space:
mode:
authorTheodore Tso <tytso@mit.edu>1996-01-11 04:05:22 +0000
committerTheodore Tso <tytso@mit.edu>1996-01-11 04:05:22 +0000
commitef24891c5c9dd2d7a1b3a828fcc3cf34fd5b8f0d (patch)
treeb7da7ed4fb0b979c2caecc87fc25020742b9d495 /src/lib/krb5/ccache/file/fcc.h
parentb510380e3424065552eb7af9bf3ca3a28f93a1ca (diff)
downloadkrb5-ef24891c5c9dd2d7a1b3a828fcc3cf34fd5b8f0d.tar.gz
krb5-ef24891c5c9dd2d7a1b3a828fcc3cf34fd5b8f0d.tar.xz
krb5-ef24891c5c9dd2d7a1b3a828fcc3cf34fd5b8f0d.zip
fcc.h (KRB5_FCC_DEFAULT_VNO): Remove KRB5_FCC_DEFAULT_VNO; now set in
init_ctx.c. fcc_maybe.c (krb5_fcc_open_file): fcc_gennew.c (krb5_fcc_generate_new): Use context->fcc_default_format to determine the credentials cache type. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@7301 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/lib/krb5/ccache/file/fcc.h')
-rw-r--r--src/lib/krb5/ccache/file/fcc.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/lib/krb5/ccache/file/fcc.h b/src/lib/krb5/ccache/file/fcc.h
index 0e26fa7f69..bd3f8c368e 100644
--- a/src/lib/krb5/ccache/file/fcc.h
+++ b/src/lib/krb5/ccache/file/fcc.h
@@ -47,9 +47,9 @@
* The code will accept version 1, 2, and 3 ccaches, and depending
* what KRB5_FCC_DEFAULT_FVNO is set to, it will create version 1, 2,
* or 3 FCC caches.
- *
- * KRB5_FCC_DEFAULT_FVNO should be set to version 3, unless there is
- * some overriding compatibility reasons not to do so.
+ *
+ * The default credentials cache should be type 3 for now (see
+ * init_ctx.c).
*/
#define KRB5_FCC_FVNO_1 0x0501 /* krb5 v5, fcc v1 */
@@ -57,8 +57,6 @@
#define KRB5_FCC_FVNO_3 0x0503 /* krb5 v5, fcc v3 */
#define KRB5_FCC_FVNO_4 0x0504 /* krb5 v5, fcc v4 */
-#define KRB5_FCC_DEFAULT_FVNO KRB5_FCC_FVNO_3
-
#define FCC_OPEN_AND_ERASE 1
#define FCC_OPEN_RDWR 2
#define FCC_OPEN_RDONLY 3