View | Details | Raw Unified | Return to bug 2892
Collapse All | Expand All

(-)ssh.c (-1 / +4 lines)
Lines 1158-1164 main(int ac, char **av) Link Here
1158
		options.proxy_use_fdpass = 0;
1158
		options.proxy_use_fdpass = 0;
1159
		snprintf(port_s, sizeof(port_s), "%d", options.jump_port);
1159
		snprintf(port_s, sizeof(port_s), "%d", options.jump_port);
1160
		xasprintf(&options.proxy_command,
1160
		xasprintf(&options.proxy_command,
1161
		    "%s%s%s%s%s%s%s%s%s%s%.*s -W '[%%h]:%%p' %s",
1161
                    "%s%s%s%s%s%s%s%s%s%s%s%s%.*s -W '[%%h]:%%p' %s",
1162
		    sshbin,
1162
		    sshbin,
1163
		    /* Optional "-l user" argument if jump_user set */
1163
		    /* Optional "-l user" argument if jump_user set */
1164
		    options.jump_user == NULL ? "" : " -l ",
1164
		    options.jump_user == NULL ? "" : " -l ",
Lines 1169-1174 main(int ac, char **av) Link Here
1169
		    /* Optional additional jump hosts ",..." */
1169
		    /* Optional additional jump hosts ",..." */
1170
		    options.jump_extra == NULL ? "" : " -J ",
1170
		    options.jump_extra == NULL ? "" : " -J ",
1171
		    options.jump_extra == NULL ? "" : options.jump_extra,
1171
		    options.jump_extra == NULL ? "" : options.jump_extra,
1172
                    /* Optional "-4" or "-6" argument */
1173
                    options.address_family == AF_INET ? " -4" : "",
1174
                    options.address_family == AF_INET6 ? " -6" : "",
1172
		    /* Optional "-F" argumment if -F specified */
1175
		    /* Optional "-F" argumment if -F specified */
1173
		    config == NULL ? "" : " -F ",
1176
		    config == NULL ? "" : " -F ",
1174
		    config == NULL ? "" : config,
1177
		    config == NULL ? "" : config,

Return to bug 2892