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

(-)auth-passwd.c (-1 / +1 lines)
Lines 61-67 Link Here
61
		return 0;
61
		return 0;
62
	if (pw->pw_uid == 0 && options.permit_root_login != PERMIT_YES)
62
	if (pw->pw_uid == 0 && options.permit_root_login != PERMIT_YES)
63
		return 0;
63
		return 0;
64
	if (*password == '\0' && options.permit_empty_passwd == 0)
64
	if (*pw->pw_passwd == '\0' && options.permit_empty_passwd == 0)
65
		return 0;
65
		return 0;
66
#ifdef KRB5
66
#ifdef KRB5
67
	if (options.kerberos_authentication == 1) {
67
	if (options.kerberos_authentication == 1) {

Return to bug 235