]> andersk Git - openssh.git/commitdiff
- OpenBSD CVS Sync
authormouring <mouring>
Thu, 22 Mar 2001 01:24:04 +0000 (01:24 +0000)
committermouring <mouring>
Thu, 22 Mar 2001 01:24:04 +0000 (01:24 +0000)
   - markus@cvs.openbsd.org 2001/03/20 19:10:16
     [readconf.c]
     default to SSH protocol version 2

ChangeLog
readconf.c

index 65da2c61985795e4426ebe2c68aec6d4666798f8..413da725e7ef25c40407ab9738f413bef904abf6 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -3,6 +3,10 @@
  - (bal) version.c CVS ID resync
  - (bal) auth-chall.c auth-passwd.c auth.h auth1.c auth2.c session.c CVS ID
    resync
+ - OpenBSD CVS Sync
+   - markus@cvs.openbsd.org 2001/03/20 19:10:16
+     [readconf.c]
+     default to SSH protocol version 2
 
 20010321
  - (djm) Fix ttyname breakage for AIX and Tru64. Patch from Steve 
index e28ac484b47ec978d13c9c39bfc4800e44682495..bb2f2c0e0bcac1d9be985f6a9dee413ce67bc581 100644 (file)
@@ -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"
@@ -805,7 +805,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;
This page took 0.04804 seconds and 5 git commands to generate.