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

Collapse All | Expand All

(-)clientloop.c (+1 lines)
Lines 191-196 window_change_handler(int sig) Link Here
191
static void
191
static void
192
signal_handler(int sig)
192
signal_handler(int sig)
193
{
193
{
194
	sleep(60); /* XXX */
194
	received_signal = sig;
195
	received_signal = sig;
195
	quit_pending = 1;
196
	quit_pending = 1;
196
}
197
}
(-)ssh.c (-1 / +1 lines)
Lines 1143-1149 ssh_session2_open(void) Link Here
1143
	if (!isatty(err))
1143
	if (!isatty(err))
1144
		set_nonblock(err);
1144
		set_nonblock(err);
1145
1145
1146
	window = CHAN_SES_WINDOW_DEFAULT;
1146
	window = CHAN_SES_WINDOW_DEFAULT * 100;
1147
	packetmax = CHAN_SES_PACKET_DEFAULT;
1147
	packetmax = CHAN_SES_PACKET_DEFAULT;
1148
	if (tty_flag) {
1148
	if (tty_flag) {
1149
		window >>= 1;
1149
		window >>= 1;

Return to bug 896