[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.89 and 1.90

version 1.89, 2019/06/14 03:39:59 version 1.90, 2019/06/21 03:19:59
Line 447 
Line 447 
         /* Turn the command into an argument vector */          /* Turn the command into an argument vector */
         if (argv_split(options.authorized_principals_command, &ac, &av) != 0) {          if (argv_split(options.authorized_principals_command, &ac, &av) != 0) {
                 error("AuthorizedPrincipalsCommand \"%s\" contains "                  error("AuthorizedPrincipalsCommand \"%s\" contains "
                     "invalid quotes", command);                      "invalid quotes", options.authorized_principals_command);
                 goto out;                  goto out;
         }          }
         if (ac == 0) {          if (ac == 0) {
                 error("AuthorizedPrincipalsCommand \"%s\" yielded no arguments",                  error("AuthorizedPrincipalsCommand \"%s\" yielded no arguments",
                     command);                      options.authorized_principals_command);
                 goto out;                  goto out;
         }          }
         if ((ca_fp = sshkey_fingerprint(cert->signature_key,          if ((ca_fp = sshkey_fingerprint(cert->signature_key,

Legend:
Removed from v.1.89  
changed lines
  Added in v.1.90