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

Diff for /src/usr.bin/ssh/auth2-hostbased.c between version 1.37 and 1.38

version 1.37, 2018/08/28 12:17:45 version 1.38, 2018/09/20 03:28:06
Line 111 
Line 111 
                     __func__, sshkey_type(key));                      __func__, sshkey_type(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;
           }
   
         if (!authctxt->valid || authctxt->user == NULL) {          if (!authctxt->valid || authctxt->user == NULL) {
                 debug2("%s: disabled because of invalid user", __func__);                  debug2("%s: disabled because of invalid user", __func__);

Legend:
Removed from v.1.37  
changed lines
  Added in v.1.38