[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.103 and 1.104

version 1.103, 2020/12/22 00:12:22 version 1.104, 2021/01/22 02:44:58
Line 147 
Line 147 
                 logit("refusing previously-used %s key", sshkey_type(key));                  logit("refusing previously-used %s key", sshkey_type(key));
                 goto done;                  goto done;
         }          }
         if (match_pattern_list(pkalg, options.pubkey_key_types, 0) != 1) {          if (match_pattern_list(pkalg, options.pubkey_accepted_algos, 0) != 1) {
                 logit_f("key type %s not in PubkeyAcceptedKeyTypes",                  logit_f("key type %s not in PubkeyAcceptedAlgorithms",
                     sshkey_ssh_name(key));                      sshkey_ssh_name(key));
                 goto done;                  goto done;
         }          }

Legend:
Removed from v.1.103  
changed lines
  Added in v.1.104