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

Collapse All | Expand All

(-)a/sshd.c (-1 / +3 lines)
Lines 1463-1468 main(int ac, char **av) Link Here
1463
	int keytype;
1463
	int keytype;
1464
	Authctxt *authctxt;
1464
	Authctxt *authctxt;
1465
	struct connection_info *connection_info = get_connection_info(0, 0);
1465
	struct connection_info *connection_info = get_connection_info(0, 0);
1466
	char *addr = NULL;
1466
1467
1467
#ifdef HAVE_SECUREWARE
1468
#ifdef HAVE_SECUREWARE
1468
	(void)set_auth_parameters(ac, av);
1469
	(void)set_auth_parameters(ac, av);
Lines 2130-2136 main(int ac, char **av) Link Here
2130
	/* Log the connection. */
2131
	/* Log the connection. */
2131
	verbose("Connection from %s port %d on %s port %d",
2132
	verbose("Connection from %s port %d on %s port %d",
2132
	    remote_ip, remote_port,
2133
	    remote_ip, remote_port,
2133
	    get_local_ipaddr(sock_in), get_local_port());
2134
	    (addr = get_local_ipaddr(sock_in)), get_local_port());
2135
	xfree(addr);
2134
2136
2135
	/*
2137
	/*
2136
	 * We don't want to listen forever unless the other side
2138
	 * We don't want to listen forever unless the other side

Return to bug 2373