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

(-)sshd.c (-2 / +3 lines)
Lines 461-468 sshd_exchange_identification(int sock_in Link Here
461
		(void) atomicio(vwrite, sock_out, s, strlen(s));
461
		(void) atomicio(vwrite, sock_out, s, strlen(s));
462
		close(sock_in);
462
		close(sock_in);
463
		close(sock_out);
463
		close(sock_out);
464
		logit("Bad protocol version identification '%.100s' from %s",
464
		logit("Bad protocol version identification '%.100s' "
465
		    client_version_string, get_remote_ipaddr());
465
		    "from %s port %d", client_version_string,
466
		    get_remote_ipaddr(), get_remote_port());
466
		cleanup_exit(255);
467
		cleanup_exit(255);
467
	}
468
	}
468
	debug("Client protocol version %d.%d; client software version %.100s",
469
	debug("Client protocol version %d.%d; client software version %.100s",

Return to bug 2162