This commit was generated by cvs2svn to compensate for changes in r69830,

which included commits to RCS files with non-trunk default branches.
This commit is contained in:
Assar Westerlund 2000-12-10 20:59:35 +00:00
commit 46c48c19a2
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=69831

View file

@ -70,30 +70,6 @@ define_variable(const char *variable, const char *value)
#ifndef WIN32
struct obsolete {
const char *from;
const char *to;
} obsolete [] = {
{ "KDC_TIMESYNC", "kdc_timesync" },
{ "KRB_REVERSE_DIRECTION", "reverse_lsb_test"},
{ "krb4_proxy", "krb4_proxy"},
{ NULL, NULL }
};
static void
check_obsolete(void)
{
struct obsolete *r;
for(r = obsolete; r->from; r++) {
if(getenv(r->from)) {
krb_warning("The environment variable `%s' is obsolete;\n"
"set `%s' in your `krb.extra' file instead\n",
r->from, r->to);
define_variable(r->to, getenv(r->from));
}
}
}
static int
read_extra_file(void)
{
@ -103,7 +79,6 @@ read_extra_file(void)
if(_krb_extra_read)
return 0;
_krb_extra_read = 1;
check_obsolete();
while(krb_get_krbextra(i++, file, sizeof(file)) == 0) {
FILE *f = fopen(file, "r");
if(f == NULL)