diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2001-07-25 14:35:19 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2001-07-25 14:35:19 +0000 |
commit | 9444a851b196cc13d41c780f8f45a06276136e05 (patch) | |
tree | fb3faebcb11082fe91142dbc5049452028180967 /usr.bin/ssh/readconf.c | |
parent | 9b5d0ac364b4502c9f4962efc3b9cf762eeb8a23 (diff) |
cleanup connect(); connection_attempts 4 -> 1; from eivind@freebsd.org
Diffstat (limited to 'usr.bin/ssh/readconf.c')
-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 91cf4079339..b8c31bbdbda 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.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" @@ -841,7 +841,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(). */ |