From adeace13951abfa7b773fc1e015bf629dfec9d07 Mon Sep 17 00:00:00 2001 From: peter Date: Tue, 11 Jul 2000 09:39:34 +0000 Subject: Make FallBackToRsh off by default. Falling back to rsh by default is silly in this day and age. Approved by: kris --- crypto/openssh/readconf.c | 2 +- crypto/openssh/ssh_config | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/crypto/openssh/readconf.c b/crypto/openssh/readconf.c index bad4c15..887d151 100644 --- a/crypto/openssh/readconf.c +++ b/crypto/openssh/readconf.c @@ -755,7 +755,7 @@ fill_default_options(Options * options) if (options->rhosts_rsa_authentication == -1) options->rhosts_rsa_authentication = 1; if (options->fallback_to_rsh == -1) - options->fallback_to_rsh = 1; + options->fallback_to_rsh = 0; if (options->use_rsh == -1) options->use_rsh = 0; if (options->batch_mode == -1) diff --git a/crypto/openssh/ssh_config b/crypto/openssh/ssh_config index 059817d..9a09310 100644 --- a/crypto/openssh/ssh_config +++ b/crypto/openssh/ssh_config @@ -21,7 +21,7 @@ # RhostsRSAAuthentication yes # RSAAuthentication yes # PasswordAuthentication yes -# FallBackToRsh yes +# FallBackToRsh no # UseRsh no # BatchMode no # CheckHostIP yes -- cgit v1.1