[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.503 and 1.504

version 1.503, 2019/06/12 11:31:50 version 1.504, 2019/06/14 04:13:58
Line 764 
Line 764 
 #endif  #endif
                         break;                          break;
                 case 'J':                  case 'J':
                         if (options.jump_host != NULL)                          if (options.jump_host != NULL) {
                                 fatal("Only a single -J option permitted");                                  fatal("Only a single -J option is permitted "
                                       "(use commas to separate multiple "
                                       "jump hops)");
                           }
                         if (options.proxy_command != NULL)                          if (options.proxy_command != NULL)
                                 fatal("Cannot specify -J with ProxyCommand");                                  fatal("Cannot specify -J with ProxyCommand");
                         if (parse_jump(optarg, &options, 1) == -1)                          if (parse_jump(optarg, &options, 1) == -1)

Legend:
Removed from v.1.503  
changed lines
  Added in v.1.504