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

Collapse All | Expand All

(-)../ssh-match-preauth/servconf.c (-1 / +3 lines)
Lines 334-340 Link Here
334
	{ "x11uselocalhost", sX11UseLocalhost, SSHCFG_ALL },
334
	{ "x11uselocalhost", sX11UseLocalhost, SSHCFG_ALL },
335
	{ "xauthlocation", sXAuthLocation, SSHCFG_GLOBAL },
335
	{ "xauthlocation", sXAuthLocation, SSHCFG_GLOBAL },
336
	{ "strictmodes", sStrictModes, SSHCFG_GLOBAL },
336
	{ "strictmodes", sStrictModes, SSHCFG_GLOBAL },
337
	{ "permitemptypasswords", sEmptyPasswd, SSHCFG_GLOBAL },
337
	{ "permitemptypasswords", sEmptyPasswd, SSHCFG_ALL },
338
	{ "permituserenvironment", sPermitUserEnvironment, SSHCFG_GLOBAL },
338
	{ "permituserenvironment", sPermitUserEnvironment, SSHCFG_GLOBAL },
339
	{ "uselogin", sUseLogin, SSHCFG_GLOBAL },
339
	{ "uselogin", sUseLogin, SSHCFG_GLOBAL },
340
	{ "compression", sCompression, SSHCFG_GLOBAL },
340
	{ "compression", sCompression, SSHCFG_GLOBAL },
Lines 1288-1293 Link Here
1288
{
1288
{
1289
	if (src->password_authentication != -1)
1289
	if (src->password_authentication != -1)
1290
		dst->password_authentication = src->password_authentication;
1290
		dst->password_authentication = src->password_authentication;
1291
	if (src->permit_empty_passwd != -1)
1292
		dst->permit_empty_passwd = src->permit_empty_passwd;
1291
	if (src->banner != NULL) {
1293
	if (src->banner != NULL) {
1292
		if (dst->banner != NULL)
1294
		if (dst->banner != NULL)
1293
			xfree(dst->banner);
1295
			xfree(dst->banner);

Return to bug 1180