diff options
author | Hans Insulander <hin@cvs.openbsd.org> | 2000-12-06 16:50:16 +0000 |
---|---|---|
committer | Hans Insulander <hin@cvs.openbsd.org> | 2000-12-06 16:50:16 +0000 |
commit | b3e645440ad21f3a540f13f8c76743fc0ca01771 (patch) | |
tree | 14f45c2915d10216fe114bafe4a89470c12520f2 | |
parent | b686d196be4b50f3acddb7ada04c8db95194c72c (diff) |
Be more paranoid about passed KRB environment variables.
(ok art)
-rw-r--r-- | libexec/telnetd/state.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libexec/telnetd/state.c b/libexec/telnetd/state.c index ac4e8d23a3c..11788c9b55d 100644 --- a/libexec/telnetd/state.c +++ b/libexec/telnetd/state.c @@ -1,4 +1,4 @@ -/* $OpenBSD: state.c,v 1.10 2000/09/15 07:13:47 deraadt Exp $ */ +/* $OpenBSD: state.c,v 1.11 2000/12/06 16:50:15 hin Exp $ */ /* $NetBSD: state.c,v 1.9 1996/02/28 20:38:19 thorpej Exp $ */ /* @@ -39,7 +39,7 @@ static char sccsid[] = "@(#)state.c 8.5 (Berkeley) 5/30/95"; static char rcsid[] = "$NetBSD: state.c,v 1.9 1996/02/28 20:38:19 thorpej Exp $"; #else -static char rcsid[] = "$OpenBSD: state.c,v 1.10 2000/09/15 07:13:47 deraadt Exp $"; +static char rcsid[] = "$OpenBSD: state.c,v 1.11 2000/12/06 16:50:15 hin Exp $"; #endif #endif /* not lint */ @@ -1086,7 +1086,7 @@ char *badenv_table[] = { "_RLD_", "SHLIB_PATH=", "LIBPATH=", - "KRB_CONF", + "KRB", "ENV=", "BASH_ENV=", NULL, |