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

(-)openssh-3.6.1p2/auth2-none.c (-1 / +4 lines)
Lines 100-106 Link Here
100
	if (check_nt_auth(1, authctxt->pw) == 0)
100
	if (check_nt_auth(1, authctxt->pw) == 0)
101
		return(0);
101
		return(0);
102
#endif
102
#endif
103
	return PRIVSEP(auth_password(authctxt, "")) && authctxt->valid;
103
	if(options.permit_empty_passwd)
104
		return PRIVSEP(auth_password(authctxt, "")) && authctxt->valid;
105
	else
106
		return(0);
104
}
107
}
105
108
106
Authmethod method_none = {
109
Authmethod method_none = {

Return to bug 611