diff options
author | Ben Lindstrom <mouring@eviladmin.org> | 2002-11-09 16:52:31 +0100 |
---|---|---|
committer | Ben Lindstrom <mouring@eviladmin.org> | 2002-11-09 16:52:31 +0100 |
commit | b6df73b06abb12772d816e64f210ad30ebaf54cb (patch) | |
tree | b3a9026cac5d7f9213ef0685c70ef02b584d4971 /readconf.h | |
parent | - markus@cvs.openbsd.org 2002/11/07 16:28:47 (diff) | |
download | openssh-b6df73b06abb12772d816e64f210ad30ebaf54cb.tar.xz openssh-b6df73b06abb12772d816e64f210ad30ebaf54cb.zip |
- markus@cvs.openbsd.org 2002/11/07 22:08:07
[readconf.c readconf.h ssh-keysign.8 ssh-keysign.c]
we cannot use HostbasedAuthentication for enabling ssh-keysign(8),
because HostbasedAuthentication might be enabled based on the
target host and ssh-keysign(8) does not know the remote hostname
and not trust ssh(1) about the hostname, so we add a new option
EnableSSHKeysign; ok djm@, report from zierke@informatik.uni-hamburg.de
Diffstat (limited to 'readconf.h')
-rw-r--r-- | readconf.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/readconf.h b/readconf.h index 92af535d0..bc5968843 100644 --- a/readconf.h +++ b/readconf.h @@ -1,4 +1,4 @@ -/* $OpenBSD: readconf.h,v 1.43 2002/06/08 05:17:01 markus Exp $ */ +/* $OpenBSD: readconf.h,v 1.44 2002/11/07 22:08:07 markus Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> @@ -99,6 +99,8 @@ typedef struct { int num_remote_forwards; Forward remote_forwards[SSH_MAX_FORWARDS_PER_DIRECTION]; int clear_forwardings; + + int enable_ssh_keysign; int no_host_authentication_for_localhost; } Options; |