[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.181 and 1.182

version 1.181, 2010/04/10 02:10:56 version 1.182, 2010/04/16 01:47:26
Line 1134 
Line 1134 
         u_int skip = 0;          u_int skip = 0;
         int ret = -1;          int ret = -1;
         int have_sig = 1;          int have_sig = 1;
           char *fp;
   
         debug3("sign_and_send_pubkey");          fp = key_fingerprint(id->key, SSH_FP_MD5, SSH_FP_HEX);
           debug3("sign_and_send_pubkey: %s %s", key_type(id->key), fp);
           xfree(fp);
   
         if (key_to_blob(id->key, &blob, &bloblen) == 0) {          if (key_to_blob(id->key, &blob, &bloblen) == 0) {
                 /* we cannot handle this key */                  /* we cannot handle this key */

Legend:
Removed from v.1.181  
changed lines
  Added in v.1.182