=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/ssh/auth-options.c,v retrieving revision 1.23.2.4 retrieving revision 1.24 diff -u -r1.23.2.4 -r1.24 --- src/usr.bin/ssh/auth-options.c 2002/10/11 14:51:51 1.23.2.4 +++ src/usr.bin/ssh/auth-options.c 2002/05/13 20:44:58 1.24 @@ -10,8 +10,9 @@ */ #include "includes.h" -RCSID("$OpenBSD: auth-options.c,v 1.23.2.4 2002/10/11 14:51:51 miod Exp $"); +RCSID("$OpenBSD: auth-options.c,v 1.24 2002/05/13 20:44:58 markus Exp $"); +#include "packet.h" #include "xmalloc.h" #include "match.h" #include "log.h" @@ -19,6 +20,7 @@ #include "channels.h" #include "auth-options.h" #include "servconf.h" +#include "bufaux.h" #include "misc.h" #include "monitor_wrap.h" #include "auth.h" @@ -133,8 +135,7 @@ goto next_option; } cp = "environment=\""; - if (options.permit_user_env && - strncasecmp(opts, cp, strlen(cp)) == 0) { + if (strncasecmp(opts, cp, strlen(cp)) == 0) { char *s; struct envstring *new_envstring;