diff options
author | 2001-03-20 19:10:16 +0000 | |
---|---|---|
committer | 2001-03-20 19:10:16 +0000 | |
commit | 6b5801cb60987365b3a686e9511af1493036ebab (patch) | |
tree | 212a602c1bbd26cce3eace0f58c1c0f88d9c9308 /usr.bin/ssh | |
parent | add changes need for BSD_AUTH plus disabled BSD_AUTH code (diff) | |
download | wireguard-openbsd-6b5801cb60987365b3a686e9511af1493036ebab.tar.xz wireguard-openbsd-6b5801cb60987365b3a686e9511af1493036ebab.zip |
default to SSH protocol version 2
Diffstat (limited to 'usr.bin/ssh')
-rw-r--r-- | usr.bin/ssh/readconf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/readconf.c b/usr.bin/ssh/readconf.c index 60d29ddea16..e7f88df70fb 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.68 2001/03/19 17:07:23 markus Exp $"); +RCSID("$OpenBSD: readconf.c,v 1.69 2001/03/20 19:10:16 markus Exp $"); #include "ssh.h" #include "xmalloc.h" @@ -803,7 +803,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; |