Make FallBackToRsh off by default. Falling back to rsh by default is
silly in this day and age. Approved by: kris
This commit is contained in:
parent
4a1afa49fd
commit
a3d6796930
@ -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)
|
||||
|
@ -21,7 +21,7 @@
|
||||
# RhostsRSAAuthentication yes
|
||||
# RSAAuthentication yes
|
||||
# PasswordAuthentication yes
|
||||
# FallBackToRsh yes
|
||||
# FallBackToRsh no
|
||||
# UseRsh no
|
||||
# BatchMode no
|
||||
# CheckHostIP yes
|
||||
|
Loading…
Reference in New Issue
Block a user