View | Details | Raw Unified | Return to bug 515 | Differences between
and this patch

Collapse All | Expand All

(-)openssh-3.5p1.orig/sshconnect.c (-1 / +1 lines)
Lines 194-200 Link Here
194
	memset(&hints, 0, sizeof(hints));
194
	memset(&hints, 0, sizeof(hints));
195
	hints.ai_family = family;
195
	hints.ai_family = family;
196
	hints.ai_socktype = SOCK_STREAM;
196
	hints.ai_socktype = SOCK_STREAM;
197
	hints.ai_flags = AI_PASSIVE;
197
	/* hints.ai_flags = AI_PASSIVE; */
198
	gaierr = getaddrinfo(options.bind_address, "0", &hints, &res);
198
	gaierr = getaddrinfo(options.bind_address, "0", &hints, &res);
199
	if (gaierr) {
199
	if (gaierr) {
200
		error("getaddrinfo: %s: %s", options.bind_address,
200
		error("getaddrinfo: %s: %s", options.bind_address,

Return to bug 515