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

Diff for /src/usr.bin/ssh/sshconnect2.c between version 1.79 and 1.80

version 1.79, 2001/06/25 20:26:37 version 1.80, 2001/06/26 20:14:11
Line 640 
Line 640 
         idx = authctxt->last_key_hint;          idx = authctxt->last_key_hint;
         if (idx < 0)          if (idx < 0)
                 return -1;                  return -1;
   
           /* private key is stored in external hardware */
           if (options.identity_keys[idx]->flags & KEY_FLAG_EXT)
                   return key_sign(options.identity_keys[idx], sigp, lenp, data, datalen);
   
         private = load_identity_file(options.identity_files[idx]);          private = load_identity_file(options.identity_files[idx]);
         if (private == NULL)          if (private == NULL)
                 return -1;                  return -1;

Legend:
Removed from v.1.79  
changed lines
  Added in v.1.80