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

Diff for /src/usr.bin/ssh/auth2-pubkey.c between version 1.85 and 1.86

version 1.85, 2018/08/28 12:25:53 version 1.86, 2018/09/20 03:28:06
Line 134 
Line 134 
                     __func__, sshkey_ssh_name(key));                      __func__, sshkey_ssh_name(key));
                 goto done;                  goto done;
         }          }
           if ((r = sshkey_check_cert_sigtype(key,
               options.ca_sign_algorithms)) != 0) {
                   logit("%s: certificate signature algorithm %s: %s", __func__,
                       (key->cert == NULL || key->cert->signature_type == NULL) ?
                       "(null)" : key->cert->signature_type, ssh_err(r));
                   goto done;
           }
         key_s = format_key(key);          key_s = format_key(key);
         if (sshkey_is_cert(key))          if (sshkey_is_cert(key))
                 ca_s = format_key(key->cert->signature_key);                  ca_s = format_key(key->cert->signature_key);

Legend:
Removed from v.1.85  
changed lines
  Added in v.1.86