summaryrefslogtreecommitdiff
path: root/readconf.c
diff options
context:
space:
mode:
authormouring <mouring>2001-03-10 17:15:39 +0000
committermouring <mouring>2001-03-10 17:15:39 +0000
commit9dc070b9493d583a11c5f6f6922b4fbf8f538569 (patch)
tree8b9e905fe4ac292808398b9715dc0196aed5f64a /readconf.c
parent12de07d001c7365671d0fd29631041b99f0d184c (diff)
downloadopenssh-9dc070b9493d583a11c5f6f6922b4fbf8f538569.tar.gz
- deraadt@cvs.openbsd.org 2001/03/10 12:53:51
[readconf.c ssh_config] default to SSH2, now that m68k runs fast
Diffstat (limited to 'readconf.c')
-rw-r--r--readconf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/readconf.c b/readconf.c
index 948d7edd..2b298147 100644
--- a/readconf.c
+++ b/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"
@@ -798,7 +798,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;