[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.49 and 1.50

version 1.49, 2022/01/06 22:01:14 version 1.50, 2022/09/17 10:34:29
Line 118 
Line 118 
                     "(null)" : key->cert->signature_type);                      "(null)" : key->cert->signature_type);
                 goto done;                  goto done;
         }          }
           if ((r = sshkey_check_rsa_length(key,
               options.required_rsa_size)) != 0) {
                   logit_r(r, "refusing %s key", sshkey_type(key));
                   goto done;
           }
   
         if (!authctxt->valid || authctxt->user == NULL) {          if (!authctxt->valid || authctxt->user == NULL) {
                 debug2_f("disabled because of invalid user");                  debug2_f("disabled because of invalid user");

Legend:
Removed from v.1.49  
changed lines
  Added in v.1.50