[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.221 and 1.222

version 1.221, 2015/01/20 20:16:21 version 1.222, 2015/01/28 22:36:00
Line 585 
Line 585 
                     key->type, pktype);                      key->type, pktype);
                 goto done;                  goto done;
         }          }
         fp = sshkey_fingerprint(key, options.fingerprint_hash, SSH_FP_DEFAULT);          if ((fp = sshkey_fingerprint(key, options.fingerprint_hash,
               SSH_FP_DEFAULT)) == NULL)
                   goto done;
         debug2("input_userauth_pk_ok: fp %s", fp);          debug2("input_userauth_pk_ok: fp %s", fp);
         free(fp);          free(fp);
   
Line 1003 
Line 1005 
         int have_sig = 1;          int have_sig = 1;
         char *fp;          char *fp;
   
         fp = key_fingerprint(id->key, options.fingerprint_hash, SSH_FP_DEFAULT);          if ((fp = sshkey_fingerprint(id->key, options.fingerprint_hash,
               SSH_FP_DEFAULT)) == NULL)
                   return 0;
         debug3("sign_and_send_pubkey: %s %s", key_type(id->key), fp);          debug3("sign_and_send_pubkey: %s %s", key_type(id->key), fp);
         free(fp);          free(fp);
   

Legend:
Removed from v.1.221  
changed lines
  Added in v.1.222