diff options
author | 2018-01-23 05:27:21 +0000 | |
---|---|---|
committer | 2018-01-23 05:27:21 +0000 | |
commit | 672fe979a97fd7692fe5dc383491eee200cc82a4 (patch) | |
tree | a5eee618fbb044084bc9499817fa167955edbd0c /usr.bin/ssh/ssh-agent.c | |
parent | try harder to preserve errno during ssh_connect_direct() to make the (diff) | |
download | wireguard-openbsd-672fe979a97fd7692fe5dc383491eee200cc82a4.tar.xz wireguard-openbsd-672fe979a97fd7692fe5dc383491eee200cc82a4.zip |
Drop compatibility hacks for some ancient SSH implementations, including
ssh.com <=2.* and OpenSSH <= 3.*.
These versions were all released in or before 2001 and predate the
final SSH RFCs. The hacks in question aren't necessary for RFC-
compliant SSH implementations.
ok markus@
Diffstat (limited to 'usr.bin/ssh/ssh-agent.c')
-rw-r--r-- | usr.bin/ssh/ssh-agent.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/usr.bin/ssh/ssh-agent.c b/usr.bin/ssh/ssh-agent.c index 3a1a0b97b3b..267f126b2e6 100644 --- a/usr.bin/ssh/ssh-agent.c +++ b/usr.bin/ssh/ssh-agent.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssh-agent.c,v 1.226 2017/11/15 02:10:16 djm Exp $ */ +/* $OpenBSD: ssh-agent.c,v 1.227 2018/01/23 05:27:21 djm Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -277,8 +277,6 @@ process_sign_request2(SocketEntry *e) goto send; } - if (flags & SSH_AGENT_OLD_SIGNATURE) - compat = SSH_BUG_SIGBLOB; if ((id = lookup_identity(key)) == NULL) { verbose("%s: %s key not found", __func__, sshkey_type(key)); goto send; |