[BACK]Return to sshconnect1.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / ssh

Diff for /src/usr.bin/ssh/Attic/sshconnect1.c between version 1.30 and 1.31

version 1.30, 2001/04/12 19:15:25 version 1.31, 2001/04/17 08:14:01
Line 999 
Line 999 
         if ((supported_authentications & (1 << SSH_AUTH_RHOSTS_RSA)) &&          if ((supported_authentications & (1 << SSH_AUTH_RHOSTS_RSA)) &&
             options.rhosts_rsa_authentication) {              options.rhosts_rsa_authentication) {
                 for (i = 0; i < nkeys; i++) {                  for (i = 0; i < nkeys; i++) {
                         if (keys[i]->type == KEY_RSA1 &&                          if (keys[i] != NULL && keys[i]->type == KEY_RSA1 &&
                             try_rhosts_rsa_authentication(local_user, keys[i]))                              try_rhosts_rsa_authentication(local_user, keys[i]))
                                 return;                                  return;
                 }                  }

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