diff options
| author | Theodore Tso <tytso@mit.edu> | 1996-02-25 00:00:39 +0000 |
|---|---|---|
| committer | Theodore Tso <tytso@mit.edu> | 1996-02-25 00:00:39 +0000 |
| commit | 354078fdef236a452fd5bb0893164f00a1a94a73 (patch) | |
| tree | 1ba0a8bf7c27befecc389e1eb99eb32e4f303e39 /src/include | |
| parent | 4913c0b1fceed6c02adfc8d1c09e4e672bd8a9ee (diff) | |
| download | krb5-354078fdef236a452fd5bb0893164f00a1a94a73.tar.gz krb5-354078fdef236a452fd5bb0893164f00a1a94a73.tar.xz krb5-354078fdef236a452fd5bb0893164f00a1a94a73.zip | |
Under windows, let it be %s\v5srvtab. It will be filled in by the
krb5_kt_default_name with the name of windows directory.
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@7527 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/krb5/stock/ChangeLog | 6 | ||||
| -rw-r--r-- | src/include/krb5/stock/osconf.h | 4 |
2 files changed, 8 insertions, 2 deletions
diff --git a/src/include/krb5/stock/ChangeLog b/src/include/krb5/stock/ChangeLog index 23ab749131..c3df1478b8 100644 --- a/src/include/krb5/stock/ChangeLog +++ b/src/include/krb5/stock/ChangeLog @@ -1,3 +1,9 @@ +Sat Feb 24 18:59:39 1996 Theodore Y. Ts'o <tytso@dcl> + + * osconf.h (DEFAULT_KEYTAB_NAME): Under windows, let it be + %s\v5srvtab. It will be filled in by the + krb5_kt_default_name with the name of windows directory. + Thu Oct 5 21:45:13 1995 Theodore Y. Ts'o <tytso@dcl> * osconf.h (DEFAULT_KDC_PROFILE): Change the name of the kdc diff --git a/src/include/krb5/stock/osconf.h b/src/include/krb5/stock/osconf.h index 0c5e4eaf89..07b678bef8 100644 --- a/src/include/krb5/stock/osconf.h +++ b/src/include/krb5/stock/osconf.h @@ -35,10 +35,10 @@ #endif #endif -#ifdef _WINDOWS +#if defined(_WINDOWS) || defined(WIN32) #define DEFAULT_PROFILE_FILENAME "krb5.ini" #define DEFAULT_LNAME_FILENAME "/aname" -#define DEFAULT_KEYTAB_NAME "FILE:/v5srvtab" +#define DEFAULT_KEYTAB_NAME "FILE:%s\\v5srvtab" #else /* !_WINDOWS */ #define DEFAULT_PROFILE_PATH "/etc/krb5.conf:@PREFIX/lib/krb5.conf" #define DEFAULT_KEYTAB_NAME "FILE:/etc/v5srvtab" |
