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

Collapse All | Expand All

(-)sshconnect2.c (-1 / +2 lines)
Lines 361-367 input_userauth_banner(int type, u_int32_ Link Here
361
	debug3("input_userauth_banner");
361
	debug3("input_userauth_banner");
362
	msg = packet_get_string(NULL);
362
	msg = packet_get_string(NULL);
363
	lang = packet_get_string(NULL);
363
	lang = packet_get_string(NULL);
364
	logit("%s", msg);
364
	if (options.log_level > SYSLOG_LEVEL_QUIET)
365
		fprintf(stderr, "%s", msg);
365
	xfree(msg);
366
	xfree(msg);
366
	xfree(lang);
367
	xfree(lang);
367
}
368
}

Return to bug 668