[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.400 and 1.401

version 1.400, 2020/02/28 01:07:28 version 1.401, 2020/03/06 18:15:04
Line 2300 
Line 2300 
                         cp = cp + strspn(cp, " \t");                          cp = cp + strspn(cp, " \t");
                         hash_to_blob(cp, &blob, &blen, file, lnum);                          hash_to_blob(cp, &blob, &blen, file, lnum);
                         r = ssh_krl_revoke_key_sha256(krl, blob, blen);                          r = ssh_krl_revoke_key_sha256(krl, blob, blen);
                           if (r != 0)
                                   fatal("%s: revoke key failed: %s",
                                       __func__, ssh_err(r));
                 } else {                  } else {
                         if (strncasecmp(cp, "key:", 4) == 0) {                          if (strncasecmp(cp, "key:", 4) == 0) {
                                 cp += 4;                                  cp += 4;

Legend:
Removed from v.1.400  
changed lines
  Added in v.1.401