diff options
author | Ben Lindstrom <mouring@eviladmin.org> | 2002-08-01 03:28:38 +0200 |
---|---|---|
committer | Ben Lindstrom <mouring@eviladmin.org> | 2002-08-01 03:28:38 +0200 |
commit | 5d860f02ca352cd8e51fe266cc2e1b5d58704964 (patch) | |
tree | 72fd795930f9ce2773dfd3f61c4d3d46c638c850 /servconf.h | |
parent | - markus@cvs.openbsd.org 2002/07/29 18:57:30 (diff) | |
download | openssh-5d860f02ca352cd8e51fe266cc2e1b5d58704964.tar.xz openssh-5d860f02ca352cd8e51fe266cc2e1b5d58704964.zip |
- markus@cvs.openbsd.org 2002/07/30 17:03:55
[auth-options.c servconf.c servconf.h session.c sshd_config sshd_config.5]
add PermitUserEnvironment (off by default!); from dot@dotat.at;
ok provos, deraadt
Diffstat (limited to 'servconf.h')
-rw-r--r-- | servconf.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/servconf.h b/servconf.h index c94f541d0..024987dd6 100644 --- a/servconf.h +++ b/servconf.h @@ -1,4 +1,4 @@ -/* $OpenBSD: servconf.h,v 1.58 2002/06/20 23:05:55 markus Exp $ */ +/* $OpenBSD: servconf.h,v 1.59 2002/07/30 17:03:55 markus Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> @@ -97,6 +97,7 @@ typedef struct { int challenge_response_authentication; int permit_empty_passwd; /* If false, do not permit empty * passwords. */ + int permit_user_env; /* If true, read ~/.ssh/environment */ int use_login; /* If true, login(1) is used */ int compression; /* If true, compression is allowed */ int allow_tcp_forwarding; |