diff options
author | Ben Lindstrom <mouring@eviladmin.org> | 2001-08-06 23:07:11 +0200 |
---|---|---|
committer | Ben Lindstrom <mouring@eviladmin.org> | 2001-08-06 23:07:11 +0200 |
commit | f9cedb9ca0c90652712b8e652d5ce740c903ee9b (patch) | |
tree | f0cfeb727591b32157c76c8d4e04764cf0140f4c /readconf.c | |
parent | - markus@cvs.openbsd.org 2001/07/25 11:59:35 (diff) | |
download | openssh-f9cedb9ca0c90652712b8e652d5ce740c903ee9b.tar.xz openssh-f9cedb9ca0c90652712b8e652d5ce740c903ee9b.zip |
- markus@cvs.openbsd.org 2001/07/25 14:35:18
[readconf.c ssh.1 ssh.c sshconnect.c]
cleanup connect(); connection_attempts 4 -> 1; from
eivind@freebsd.org
Diffstat (limited to 'readconf.c')
-rw-r--r-- | readconf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/readconf.c b/readconf.c index 36700fbd5..6519ec667 100644 --- a/readconf.c +++ b/readconf.c @@ -12,7 +12,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: readconf.c,v 1.83 2001/07/22 22:04:19 markus Exp $"); +RCSID("$OpenBSD: readconf.c,v 1.84 2001/07/25 14:35:18 markus Exp $"); #include "ssh.h" #include "xmalloc.h" @@ -843,7 +843,7 @@ fill_default_options(Options * options) if (options->port == -1) options->port = 0; /* Filled in ssh_connect. */ if (options->connection_attempts == -1) - options->connection_attempts = 4; + options->connection_attempts = 1; if (options->number_of_password_prompts == -1) options->number_of_password_prompts = 3; /* Selected in ssh_login(). */ |