[BACK]Return to servconf.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / ssh

Diff for /src/usr.bin/ssh/servconf.c between version 1.403 and 1.404

version 1.403, 2023/10/11 22:42:26 version 1.404, 2024/02/20 04:10:03
Line 1888 
Line 1888 
                 arg = argv_assemble(1, &arg); /* quote command correctly */                  arg = argv_assemble(1, &arg); /* quote command correctly */
                 arg2 = argv_assemble(ac, av); /* rest of command */                  arg2 = argv_assemble(ac, av); /* rest of command */
                 xasprintf(&options->subsystem_args[options->num_subsystems],                  xasprintf(&options->subsystem_args[options->num_subsystems],
                     "%s %s", arg, arg2);                      "%s%s%s", arg, *arg2 == '\0' ? "" : " ", arg2);
                 free(arg2);                  free(arg2);
                 argv_consume(&ac);                  argv_consume(&ac);
                 options->num_subsystems++;                  options->num_subsystems++;

Legend:
Removed from v.1.403  
changed lines
  Added in v.1.404