summaryrefslogtreecommitdiff
path: root/readconf.c
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2002-06-11 15:53:05 +0000
committerBen Lindstrom <mouring@eviladmin.org>2002-06-11 15:53:05 +0000
commit2bf82763935991dd151eac3bc378eebbbaea3fdc (patch)
tree49f19281fba794b1d5ab23893da8f92dccd74f5f /readconf.c
parent1775c9c97af0559f7b6df766ce79d66a1e883379 (diff)
- stevesk@cvs.openbsd.org 2002/06/10 17:45:20
[readconf.c ssh.1] change RhostsRSAAuthentication and RhostsAuthentication default to no since ssh is no longer setuid root by default; ok markus@
Diffstat (limited to 'readconf.c')
-rw-r--r--readconf.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/readconf.c b/readconf.c
index 79c27ae15..9defef1de 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.98 2002/06/08 12:46:14 markus Exp $"); 15RCSID("$OpenBSD: readconf.c,v 1.99 2002/06/10 17:45:20 stevesk Exp $");
16 16
17#include "ssh.h" 17#include "ssh.h"
18#include "xmalloc.h" 18#include "xmalloc.h"
@@ -816,7 +816,7 @@ fill_default_options(Options * options)
816 if (options->use_privileged_port == -1) 816 if (options->use_privileged_port == -1)
817 options->use_privileged_port = 0; 817 options->use_privileged_port = 0;
818 if (options->rhosts_authentication == -1) 818 if (options->rhosts_authentication == -1)
819 options->rhosts_authentication = 1; 819 options->rhosts_authentication = 0;
820 if (options->rsa_authentication == -1) 820 if (options->rsa_authentication == -1)
821 options->rsa_authentication = 1; 821 options->rsa_authentication = 1;
822 if (options->pubkey_authentication == -1) 822 if (options->pubkey_authentication == -1)
@@ -840,7 +840,7 @@ fill_default_options(Options * options)
840 if (options->kbd_interactive_authentication == -1) 840 if (options->kbd_interactive_authentication == -1)
841 options->kbd_interactive_authentication = 1; 841 options->kbd_interactive_authentication = 1;
842 if (options->rhosts_rsa_authentication == -1) 842 if (options->rhosts_rsa_authentication == -1)
843 options->rhosts_rsa_authentication = 1; 843 options->rhosts_rsa_authentication = 0;
844 if (options->hostbased_authentication == -1) 844 if (options->hostbased_authentication == -1)
845 options->hostbased_authentication = 0; 845 options->hostbased_authentication = 0;
846 if (options->batch_mode == -1) 846 if (options->batch_mode == -1)