[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.101 and 1.102

version 1.101, 2020/10/18 11:32:01 version 1.102, 2020/12/17 23:28:50
Line 924 
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) {
                 error("AuthorizedKeysCommand \"%s\" contains invalid quotes",                  error("AuthorizedKeysCommand \"%s\" contains invalid quotes",
                     command);                      options.authorized_keys_command);
                 goto out;                  goto out;
         }          }
         if (ac == 0) {          if (ac == 0) {
                 error("AuthorizedKeysCommand \"%s\" yielded no arguments",                  error("AuthorizedKeysCommand \"%s\" yielded no arguments",
                     command);                      options.authorized_keys_command);
                 goto out;                  goto out;
         }          }
         snprintf(uidstr, sizeof(uidstr), "%llu",          snprintf(uidstr, sizeof(uidstr), "%llu",

Legend:
Removed from v.1.101  
changed lines
  Added in v.1.102