aboutsummaryrefslogtreecommitdiff
path: root/crypto/kerberosIV/lib
diff options
context:
space:
mode:
authorAssar Westerlund <assar@FreeBSD.org>2000-12-10 20:59:35 +0000
committerAssar Westerlund <assar@FreeBSD.org>2000-12-10 20:59:35 +0000
commit46c48c19a2b03f5d965ade6947941bf27c2b36ba (patch)
tree58eda5085e7591ab9ed5da1c42740fb1fbc545f6 /crypto/kerberosIV/lib
parent77edab906e4d0c137fb6b4784ab34b44b7874fc7 (diff)
parentfcbc584c3b3186fb9d39b27cfa2c73f110d05dbd (diff)
downloadsrc-46c48c19a2b03f5d965ade6947941bf27c2b36ba.tar.gz
src-46c48c19a2b03f5d965ade6947941bf27c2b36ba.zip
This commit was generated by cvs2svn to compensate for changes in r69830,
which included commits to RCS files with non-trunk default branches.
Notes
Notes: svn path=/head/; revision=69831
Diffstat (limited to 'crypto/kerberosIV/lib')
-rw-r--r--crypto/kerberosIV/lib/krb/extra.c25
1 files changed, 0 insertions, 25 deletions
diff --git a/crypto/kerberosIV/lib/krb/extra.c b/crypto/kerberosIV/lib/krb/extra.c
index c90767e87a68..0668e17836db 100644
--- a/crypto/kerberosIV/lib/krb/extra.c
+++ b/crypto/kerberosIV/lib/krb/extra.c
@@ -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)