[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.58 and 1.59

version 1.58, 2016/09/21 01:34:45 version 1.59, 2016/09/21 17:44:20
Line 692 
Line 692 
                 error("%s: sshkey_to_base64 failed: %s", __func__, ssh_err(r));                  error("%s: sshkey_to_base64 failed: %s", __func__, ssh_err(r));
                 goto out;                  goto out;
         }          }
         snprintf(serial_s, sizeof(serial_s), "%llu", cert->serial);          snprintf(serial_s, sizeof(serial_s), "%llu",
               (unsigned long long)cert->serial);
         for (i = 1; i < ac; i++) {          for (i = 1; i < ac; i++) {
                 tmp = percent_expand(av[i],                  tmp = percent_expand(av[i],
                     "u", user_pw->pw_name,                      "u", user_pw->pw_name,

Legend:
Removed from v.1.58  
changed lines
  Added in v.1.59