summaryrefslogtreecommitdiff
path: root/auth1.c
diff options
context:
space:
mode:
authordjm <djm>2002-01-22 12:11:00 +0000
committerdjm <djm>2002-01-22 12:11:00 +0000
commitc539d57036b114cb7affe3011e251285f0fd3972 (patch)
treef5b65f729e353b58c6294d30d6724b5ce87b1442 /auth1.c
parent5b12ac31703c48aa3caacbdc498f75928609119e (diff)
downloadopenssh-c539d57036b114cb7affe3011e251285f0fd3972.tar.gz
- markus@cvs.openbsd.org 2001/12/27 19:54:53
[auth1.c auth.h auth-rh-rsa.c] auth_rhosts_rsa now accept generic keys.
Diffstat (limited to 'auth1.c')
-rw-r--r--auth1.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/auth1.c b/auth1.c
index 921a1757..766053c9 100644
--- a/auth1.c
+++ b/auth1.c
@@ -10,7 +10,7 @@
*/
#include "includes.h"
-RCSID("$OpenBSD: auth1.c,v 1.29 2001/12/27 18:22:16 markus Exp $");
+RCSID("$OpenBSD: auth1.c,v 1.30 2001/12/27 19:54:53 markus Exp $");
#include "xmalloc.h"
#include "rsa.h"
@@ -214,7 +214,7 @@ do_authloop(Authctxt *authctxt)
packet_integrity_check(plen, (4 + ulen) + 4 + elen + nlen, type);
authenticated = auth_rhosts_rsa(pw, client_user,
- client_host_key->rsa);
+ client_host_key);
key_free(client_host_key);
snprintf(info, sizeof info, " ruser %.100s", client_user);