summaryrefslogtreecommitdiff
path: root/readconf.h
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2008-06-30 00:04:03 +1000
committerDamien Miller <djm@mindrot.org>2008-06-30 00:04:03 +1000
commit1028824e5c456dc3d8a57fe5bae539beb4a95432 (patch)
treeaa151e1b321494095a70f8b65b298529386e609c /readconf.h
parent2e9cf4906926fba123d415fdac8465b94bcd38b3 (diff)
- grunk@cvs.openbsd.org 2008/06/26 11:46:31
[readconf.c readconf.h ssh.1 ssh_config.5 sshconnect.c] Move SSH Fingerprint Visualization away from sharing the config option CheckHostIP to an own config option named VisualHostKey. While there, fix the behaviour that ssh would draw a random art picture on every newly seen host even when the option was not enabled. prodded by deraadt@, discussions, help and ok markus@ djm@ dtucker@
Diffstat (limited to 'readconf.h')
-rw-r--r--readconf.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/readconf.h b/readconf.h
index 5c16a0ba6..47c7aef4e 100644
--- a/readconf.h
+++ b/readconf.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: readconf.h,v 1.73 2008/06/11 21:01:35 grunk Exp $ */ 1/* $OpenBSD: readconf.h,v 1.74 2008/06/26 11:46:31 grunk Exp $ */
2 2
3/* 3/*
4 * Author: Tatu Ylonen <ylo@cs.hut.fi> 4 * Author: Tatu Ylonen <ylo@cs.hut.fi>
@@ -120,13 +120,10 @@ typedef struct {
120 120
121 char *local_command; 121 char *local_command;
122 int permit_local_command; 122 int permit_local_command;
123 int visual_host_key;
123 124
124} Options; 125} Options;
125 126
126#define SSHCTL_CHECKHOSTIP_NO 0
127#define SSHCTL_CHECKHOSTIP_YES 1
128#define SSHCTL_CHECKHOSTIP_FPR 2
129
130#define SSHCTL_MASTER_NO 0 127#define SSHCTL_MASTER_NO 0
131#define SSHCTL_MASTER_YES 1 128#define SSHCTL_MASTER_YES 1
132#define SSHCTL_MASTER_AUTO 2 129#define SSHCTL_MASTER_AUTO 2