diff options
author | 2001-03-10 12:53:51 +0000 | |
---|---|---|
committer | 2001-03-10 12:53:51 +0000 | |
commit | 6b334b3ac4c91f60c660a42416dbee210832f673 (patch) | |
tree | c73d111ad3a27a7f785968e976a50d3e7d9c99fa | |
parent | ignore nonexisting private keys; report rjmooney@mediaone.net (diff) | |
download | wireguard-openbsd-6b334b3ac4c91f60c660a42416dbee210832f673.tar.xz wireguard-openbsd-6b334b3ac4c91f60c660a42416dbee210832f673.zip |
default to SSH2, now that m68k runs fast
-rw-r--r-- | usr.bin/ssh/readconf.c | 4 | ||||
-rw-r--r-- | usr.bin/ssh/ssh_config | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/ssh/readconf.c b/usr.bin/ssh/readconf.c index e96a848f8c0..0e60703633e 100644 --- a/usr.bin/ssh/readconf.c +++ b/usr.bin/ssh/readconf.c @@ -12,7 +12,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: readconf.c,v 1.65 2001/03/08 00:15:47 markus Exp $"); +RCSID("$OpenBSD: readconf.c,v 1.66 2001/03/10 12:53:52 deraadt Exp $"); #include "ssh.h" #include "xmalloc.h" @@ -796,7 +796,7 @@ fill_default_options(Options * options) /* options->ciphers, default set in myproposals.h */ /* options->macs, default set in myproposals.h */ if (options->protocol == SSH_PROTO_UNKNOWN) - options->protocol = SSH_PROTO_1|SSH_PROTO_2|SSH_PROTO_1_PREFERRED; + options->protocol = SSH_PROTO_1|SSH_PROTO_2; if (options->num_identity_files == 0) { if (options->protocol & SSH_PROTO_1) { len = 2 + strlen(_PATH_SSH_CLIENT_IDENTITY) + 1; diff --git a/usr.bin/ssh/ssh_config b/usr.bin/ssh/ssh_config index cfaf2313f84..e3faa770913 100644 --- a/usr.bin/ssh/ssh_config +++ b/usr.bin/ssh/ssh_config @@ -1,4 +1,4 @@ -# $OpenBSD: ssh_config,v 1.8 2001/02/02 12:57:51 deraadt Exp $ +# $OpenBSD: ssh_config,v 1.9 2001/03/10 12:53:51 deraadt Exp $ # This is ssh client systemwide configuration file. See ssh(1) for more # information. This file provides defaults for users, and the values can @@ -31,6 +31,6 @@ # IdentityFile ~/.ssh/id_rsa1 # IdentityFile ~/.ssh/id_rsa2 # Port 22 -# Protocol 1,2 +# Protocol 2,1 # Cipher blowfish # EscapeChar ~ |