[BACK]Return to auth-rh-rsa.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / ssh

Diff for /src/usr.bin/ssh/Attic/auth-rh-rsa.c between version 1.31 and 1.32

version 1.31, 2002/03/16 17:22:09 version 1.32, 2002/03/18 17:50:31
Line 25 
Line 25 
 #include "auth.h"  #include "auth.h"
 #include "canohost.h"  #include "canohost.h"
   
   #include "monitor_wrap.h"
   
 /* import */  /* import */
 extern ServerOptions options;  extern ServerOptions options;
   
Line 69 
Line 71 
         chost = (char *)get_canonical_hostname(options.verify_reverse_mapping);          chost = (char *)get_canonical_hostname(options.verify_reverse_mapping);
         debug("Rhosts RSA authentication: canonical host %.900s", chost);          debug("Rhosts RSA authentication: canonical host %.900s", chost);
   
         if (!auth_rhosts_rsa_key_allowed(pw, cuser, chost, client_host_key)) {          if (!PRIVSEP(auth_rhosts_rsa_key_allowed(pw, cuser, chost, client_host_key))) {
                 debug("Rhosts with RSA host authentication denied: unknown or invalid host key");                  debug("Rhosts with RSA host authentication denied: unknown or invalid host key");
                 packet_send_debug("Your host key cannot be verified: unknown or invalid host key.");                  packet_send_debug("Your host key cannot be verified: unknown or invalid host key.");
                 return 0;                  return 0;

Legend:
Removed from v.1.31  
changed lines
  Added in v.1.32