diff options
author | 2018-07-16 11:05:41 +0000 | |
---|---|---|
committer | 2018-07-16 11:05:41 +0000 | |
commit | 1a7a8344207779d98ae5812c0258d5bc7e06ff1f (patch) | |
tree | c3ce296605c5520afd7c65107f248d092241f57d /usr.bin/ssh/sshconnect.h | |
parent | network.conf (diff) | |
download | wireguard-openbsd-1a7a8344207779d98ae5812c0258d5bc7e06ff1f.tar.xz wireguard-openbsd-1a7a8344207779d98ae5812c0258d5bc7e06ff1f.zip |
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@
Diffstat (limited to 'usr.bin/ssh/sshconnect.h')
-rw-r--r-- | usr.bin/ssh/sshconnect.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.bin/ssh/sshconnect.h b/usr.bin/ssh/sshconnect.h index dd648b096e9..6bba62ad0a4 100644 --- a/usr.bin/ssh/sshconnect.h +++ b/usr.bin/ssh/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; |