summaryrefslogtreecommitdiff
path: root/usr.bin/ssh/sshd.c
diff options
context:
space:
mode:
authorMarkus Friedl <markus@cvs.openbsd.org>1999-11-11 22:58:40 +0000
committerMarkus Friedl <markus@cvs.openbsd.org>1999-11-11 22:58:40 +0000
commit60d81ea24be4e04ee33496f2cb2e3f96f8ae2c32 (patch)
treea5c4c826ebf59a356df309188208575df187b0dc /usr.bin/ssh/sshd.c
parent0ca57a9a9e8a83c9582b41197d55c27e30a58264 (diff)
IgnoreUserKnownHosts(default=no), used for RhostRSAAuth, ok deraadt,millert
Diffstat (limited to 'usr.bin/ssh/sshd.c')
-rw-r--r--usr.bin/ssh/sshd.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/usr.bin/ssh/sshd.c b/usr.bin/ssh/sshd.c
index 55c312a1a93..d5e00c328c3 100644
--- a/usr.bin/ssh/sshd.c
+++ b/usr.bin/ssh/sshd.c
@@ -18,7 +18,7 @@ agent connections.
*/
#include "includes.h"
-RCSID("$Id: sshd.c,v 1.49 1999/11/11 15:23:14 markus Exp $");
+RCSID("$Id: sshd.c,v 1.50 1999/11/11 22:58:39 markus Exp $");
#include "xmalloc.h"
#include "rsa.h"
@@ -1254,11 +1254,8 @@ do_authentication(char *user, int privileged_port)
packet_integrity_check(plen, (4 + ulen) + 4 + elen + nlen, type);
}
- /* Try to authenticate using /etc/hosts.equiv and .rhosts. */
if (auth_rhosts_rsa(pw, client_user,
- client_host_key_bits, client_host_key_e,
- client_host_key_n, options.ignore_rhosts,
- options.strict_modes))
+ client_host_key_bits, client_host_key_e, client_host_key_n))
{
/* Authentication accepted. */
authenticated = 1;