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

(-)uucpd.c (+3 lines)
Lines 173-178 Link Here
173
	syslog(LOG_AUTHPRIV|LOG_NOTICE,
173
	syslog(LOG_AUTHPRIV|LOG_NOTICE,
174
	    "LOGIN FAILURE FROM %s, %s", remotehost, name);
174
	    "LOGIN FAILURE FROM %s, %s", remotehost, name);
175
175
176
	sleep(3);
176
	fprintf(stderr, "Login incorrect.\n");
177
	fprintf(stderr, "Login incorrect.\n");
177
	exit(1);
178
	exit(1);
178
}
179
}
Lines 208-213 Link Here
208
209
209
	/* pw might get changed by auth_pam */
210
	/* pw might get changed by auth_pam */
210
	pw = getpwnam(user);
211
	pw = getpwnam(user);
212
	if (pw == NULL)
213
		badlogin(user);
211
214
212
#ifdef USE_PAM
215
#ifdef USE_PAM
213
	/*
216
	/*

Return to bug 115765