summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--readconf.c4
-rw-r--r--ssh_config4
3 files changed, 8 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index d4c6453d4..b252511ac 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -3,6 +3,9 @@
3 - markus@cvs.openbsd.org 2001/03/10 12:48:27 3 - markus@cvs.openbsd.org 2001/03/10 12:48:27
4 [sshconnect2.c] 4 [sshconnect2.c]
5 ignore nonexisting private keys; report rjmooney@mediaone.net 5 ignore nonexisting private keys; report rjmooney@mediaone.net
6 - deraadt@cvs.openbsd.org 2001/03/10 12:53:51
7 [readconf.c ssh_config]
8 default to SSH2, now that m68k runs fast
6 9
720010310 1020010310
8 - OpenBSD CVS Sync 11 - OpenBSD CVS Sync
@@ -4474,4 +4477,4 @@
4474 - Wrote replacements for strlcpy and mkdtemp 4477 - Wrote replacements for strlcpy and mkdtemp
4475 - Released 1.0pre1 4478 - Released 1.0pre1
4476 4479
4477$Id: ChangeLog,v 1.934 2001/03/10 17:08:59 mouring Exp $ 4480$Id: ChangeLog,v 1.935 2001/03/10 17:15:39 mouring Exp $
diff --git a/readconf.c b/readconf.c
index 948d7eddf..2b2981476 100644
--- a/readconf.c
+++ b/readconf.c
@@ -12,7 +12,7 @@
12 */ 12 */
13 13
14#include "includes.h" 14#include "includes.h"
15RCSID("$OpenBSD: readconf.c,v 1.65 2001/03/08 00:15:47 markus Exp $"); 15RCSID("$OpenBSD: readconf.c,v 1.66 2001/03/10 12:53:52 deraadt Exp $");
16 16
17#include "ssh.h" 17#include "ssh.h"
18#include "xmalloc.h" 18#include "xmalloc.h"
@@ -798,7 +798,7 @@ fill_default_options(Options * options)
798 /* options->ciphers, default set in myproposals.h */ 798 /* options->ciphers, default set in myproposals.h */
799 /* options->macs, default set in myproposals.h */ 799 /* options->macs, default set in myproposals.h */
800 if (options->protocol == SSH_PROTO_UNKNOWN) 800 if (options->protocol == SSH_PROTO_UNKNOWN)
801 options->protocol = SSH_PROTO_1|SSH_PROTO_2|SSH_PROTO_1_PREFERRED; 801 options->protocol = SSH_PROTO_1|SSH_PROTO_2;
802 if (options->num_identity_files == 0) { 802 if (options->num_identity_files == 0) {
803 if (options->protocol & SSH_PROTO_1) { 803 if (options->protocol & SSH_PROTO_1) {
804 len = 2 + strlen(_PATH_SSH_CLIENT_IDENTITY) + 1; 804 len = 2 + strlen(_PATH_SSH_CLIENT_IDENTITY) + 1;
diff --git a/ssh_config b/ssh_config
index cfaf2313f..e3faa7709 100644
--- a/ssh_config
+++ b/ssh_config
@@ -1,4 +1,4 @@
1# $OpenBSD: ssh_config,v 1.8 2001/02/02 12:57:51 deraadt Exp $ 1# $OpenBSD: ssh_config,v 1.9 2001/03/10 12:53:51 deraadt Exp $
2 2
3# This is ssh client systemwide configuration file. See ssh(1) for more 3# This is ssh client systemwide configuration file. See ssh(1) for more
4# information. This file provides defaults for users, and the values can 4# information. This file provides defaults for users, and the values can
@@ -31,6 +31,6 @@
31# IdentityFile ~/.ssh/id_rsa1 31# IdentityFile ~/.ssh/id_rsa1
32# IdentityFile ~/.ssh/id_rsa2 32# IdentityFile ~/.ssh/id_rsa2
33# Port 22 33# Port 22
34# Protocol 1,2 34# Protocol 2,1
35# Cipher blowfish 35# Cipher blowfish
36# EscapeChar ~ 36# EscapeChar ~