[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.107 and 1.108

version 1.107, 2021/04/03 06:18:40 version 1.108, 2021/06/08 06:54:40
Line 472 
Line 472 
         }          }
   
         /* 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) != 0) {
                 error("AuthorizedPrincipalsCommand \"%s\" contains "                  error("AuthorizedPrincipalsCommand \"%s\" contains "
                     "invalid quotes", options.authorized_principals_command);                      "invalid quotes", options.authorized_principals_command);
                 goto out;                  goto out;
Line 923 
Line 924 
         }          }
   
         /* Turn the command into an argument vector */          /* Turn the command into an argument vector */
         if (argv_split(options.authorized_keys_command, &ac, &av) != 0) {          if (argv_split(options.authorized_keys_command, &ac, &av, 0) != 0) {
                 error("AuthorizedKeysCommand \"%s\" contains invalid quotes",                  error("AuthorizedKeysCommand \"%s\" contains invalid quotes",
                     options.authorized_keys_command);                      options.authorized_keys_command);
                 goto out;                  goto out;

Legend:
Removed from v.1.107  
changed lines
  Added in v.1.108