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

Diff for /src/usr.bin/ssh/ssh.c between version 1.589 and 1.590

version 1.589, 2023/06/21 05:08:32 version 1.590, 2023/07/04 03:59:21
Line 881 
Line 881 
                         if (muxclient_command != 0)                          if (muxclient_command != 0)
                                 fatal("Cannot specify stdio forward with -O");                                  fatal("Cannot specify stdio forward with -O");
                         if (parse_forward(&fwd, optarg, 1, 0)) {                          if (parse_forward(&fwd, optarg, 1, 0)) {
                                 options.stdio_forward_host = fwd.listen_host;                                  options.stdio_forward_host =
                                       fwd.listen_port == PORT_STREAMLOCAL ?
                                       fwd.listen_path : fwd.listen_host;
                                 options.stdio_forward_port = fwd.listen_port;                                  options.stdio_forward_port = fwd.listen_port;
                                 free(fwd.connect_host);                                  free(fwd.connect_host);
                         } else {                          } else {

Legend:
Removed from v.1.589  
changed lines
  Added in v.1.590