Displaying 1 result from an estimated 1 matches for "rsa_host_other_authentication".
2000 Aug 04
0
Combining RSA host authentication with another method
...ntication. */
! if (!auth_rhosts(pw, client_user))
return 0;
canonical_hostname = get_canonical_hostname();
--- 47,54 ----
return 0;
/* Check if we would accept it using rhosts authentication. */
! /* But not if we're doing RSA host/other authentication. */
! if (!options.rsa_host_other_authentication && !auth_rhosts(pw, client_user))
return 0;
canonical_hostname = get_canonical_hostname();
diff -c openssh-2.1.1p4.orig/auth1.c openssh-2.1.1p4/auth1.c
*** openssh-2.1.1p4.orig/auth1.c Sat Jul 8 01:44:14 2000
--- openssh-2.1.1p4/auth1.c Fri Aug 4 11:04:57 2000
***************
**...