summaryrefslogtreecommitdiff
path: root/sshconnect.h
diff options
context:
space:
mode:
authordtucker@openbsd.org <dtucker@openbsd.org>2018-07-16 11:05:41 +0000
committerDamien Miller <djm@mindrot.org>2018-07-19 20:17:33 +1000
commit26efc2f5df0e3bcf6a6bbdd0506fd682d60c2145 (patch)
tree9cd4755df1683a1c861fb380f47b1d141ba25c44 /sshconnect.h
parent3eb7f1038d17af7aea3c2c62d1e30cd545607640 (diff)
upstream: Remove support for loading HostBasedAuthentication keys
directly in ssh(1) and always use ssh-keysign. This removes one of the few remaining reasons why ssh(1) might be setuid. ok markus@ OpenBSD-Commit-ID: 97f01e1448707129a20d75f86bad5d27c3cf0b7d
Diffstat (limited to 'sshconnect.h')
-rw-r--r--sshconnect.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/sshconnect.h b/sshconnect.h
index dd648b096..6bba62ad0 100644
--- a/sshconnect.h
+++ b/sshconnect.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: sshconnect.h,v 1.32 2018/02/10 09:25:35 djm Exp $ */ 1/* $OpenBSD: sshconnect.h,v 1.33 2018/07/16 11:05:41 dtucker Exp $ */
2 2
3/* 3/*
4 * Copyright (c) 2000 Markus Friedl. All rights reserved. 4 * Copyright (c) 2000 Markus Friedl. All rights reserved.
@@ -28,7 +28,6 @@ typedef struct Sensitive Sensitive;
28struct Sensitive { 28struct Sensitive {
29 struct sshkey **keys; 29 struct sshkey **keys;
30 int nkeys; 30 int nkeys;
31 int external_keysign;
32}; 31};
33 32
34struct addrinfo; 33struct addrinfo;