Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 244222
Collapse All | Expand All

(-)openssh-old/sshconnect2.c (-1 / +1 lines)
Lines 387-393 input_userauth_banner(int type, u_int32_ Link Here
387
		if (len > 65536)
387
		if (len > 65536)
388
			len = 65536;
388
			len = 65536;
389
		msg = xmalloc(len * 4); /* max expansion from strnvis() */
389
		msg = xmalloc(len * 4); /* max expansion from strnvis() */
390
		strnvis(msg, raw, len * 4, VIS_SAFE|VIS_OCTAL);
390
		strnvis(msg, raw, len * 4, VIS_SAFE|VIS_OCTAL|VIS_NOSLASH);
391
		fprintf(stderr, "%s", msg);
391
		fprintf(stderr, "%s", msg);
392
		xfree(msg);
392
		xfree(msg);
393
	}
393
	}

Return to bug 244222