diff options
-rw-r--r-- | src/include/krb5/stock/ChangeLog | 5 | ||||
-rw-r--r-- | src/include/krb5/stock/osconf.h | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/src/include/krb5/stock/ChangeLog b/src/include/krb5/stock/ChangeLog index 0df6f26dc..7a59b36c1 100644 --- a/src/include/krb5/stock/ChangeLog +++ b/src/include/krb5/stock/ChangeLog @@ -1,3 +1,8 @@ +Tue Sep 26 22:47:15 1995 Mark Eichin <eichin@cygnus.com> + + * osconf.h (DEFAULT_PROFILE_PATH): look in $(prefix)/lib/krb5.conf + if /etc/krb5.conf isn't found. + Fri Sep 29 01:45:27 1995 Theodore Y. Ts'o <tytso@dcl> * osconf.h: Don't include autoconf.h under Windows, since it diff --git a/src/include/krb5/stock/osconf.h b/src/include/krb5/stock/osconf.h index 070f5b98f..ed5c4364a 100644 --- a/src/include/krb5/stock/osconf.h +++ b/src/include/krb5/stock/osconf.h @@ -40,7 +40,7 @@ #define DEFAULT_LNAME_FILENAME "/aname" #define DEFAULT_KEYTAB_NAME "FILE:/v5srvtab" #else /* !_WINDOWS */ -#define DEFAULT_PROFILE_FILENAME "/etc/krb5.conf" +#define DEFAULT_PROFILE_FILENAME "/etc/krb5.conf:@PREFIX/lib/krb5.conf" #define DEFAULT_KEYTAB_NAME "FILE:/etc/v5srvtab" #define DEFAULT_LNAME_FILENAME "@PREFIX/lib/krb5.aname" #endif /* _WINDOWS */ |