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

Diff for /src/usr.bin/ssh/ssh-keygen.c between version 1.167 and 1.168

version 1.167, 2008/06/11 21:01:35 version 1.168, 2008/06/11 21:38:25
Line 514 
Line 514 
         public = key_load_public(identity_file, &comment);          public = key_load_public(identity_file, &comment);
         if (public != NULL) {          if (public != NULL) {
                 fp = key_fingerprint(public, fptype, rep);                  fp = key_fingerprint(public, fptype, rep);
                 ra = key_fingerprint(public, fptype, rep);                  ra = key_fingerprint(public, fptype, SSH_FP_RANDOMART);
                 printf("%u %s %s\n", key_size(public), fp, comment);                  printf("%u %s %s\n", key_size(public), fp, comment);
                 verbose("%s\n", ra);                  verbose("%s", ra);
                 key_free(public);                  key_free(public);
                 xfree(comment);                  xfree(comment);
                 xfree(ra);                  xfree(ra);

Legend:
Removed from v.1.167  
changed lines
  Added in v.1.168