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)
downloadopenssh-git-26efc2f5df0e3bcf6a6bbdd0506fd682d60c2145.tar.gz
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 dd648b09..6bba62ad 100644
--- a/sshconnect.h
+++ b/sshconnect.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: sshconnect.h,v 1.32 2018/02/10 09:25:35 djm Exp $ */
+/* $OpenBSD: sshconnect.h,v 1.33 2018/07/16 11:05:41 dtucker Exp $ */
/*
* Copyright (c) 2000 Markus Friedl. All rights reserved.
@@ -28,7 +28,6 @@ typedef struct Sensitive Sensitive;
struct Sensitive {
struct sshkey **keys;
int nkeys;
- int external_keysign;
};
struct addrinfo;