[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.44 and 1.45

version 1.44, 2014/12/22 07:51:30 version 1.45, 2015/01/13 07:39:19
Line 124 
Line 124 
                 logit("refusing previously-used %s key", key_type(key));                  logit("refusing previously-used %s key", key_type(key));
                 goto done;                  goto done;
         }          }
           if (match_pattern_list(sshkey_ssh_name(key), options.pubkey_key_types,
               strlen(options.pubkey_key_types), 0) != 1) {
                   logit("%s: key type %s not in PubkeyAcceptedKeyTypes",
                       __func__, sshkey_ssh_name(key));
                   goto done;
           }
   
         if (have_sig) {          if (have_sig) {
                 sig = packet_get_string(&slen);                  sig = packet_get_string(&slen);
                 packet_check_eom();                  packet_check_eom();

Legend:
Removed from v.1.44  
changed lines
  Added in v.1.45