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

(-)auth.c (+3 lines)
Lines 307-312 check_key_in_hostfiles(struct passwd *pw Link Here
307
			logit("Authentication refused for %.100s: "
307
			logit("Authentication refused for %.100s: "
308
			    "bad owner or modes for %.200s",
308
			    "bad owner or modes for %.200s",
309
			    pw->pw_name, user_hostfile);
309
			    pw->pw_name, user_hostfile);
310
			auth_debug_add("Ignored %.200s: bad ownership or modes",
311
			    user_hostfile);
310
		} else {
312
		} else {
311
			temporarily_use_uid(pw);
313
			temporarily_use_uid(pw);
312
			host_status = check_host_in_hostfile(user_hostfile,
314
			host_status = check_host_in_hostfile(user_hostfile,
Lines 430-435 auth_openfile(const char *file, struct p Link Here
430
	    secure_filename(f, file, pw, line, sizeof(line)) != 0) {
432
	    secure_filename(f, file, pw, line, sizeof(line)) != 0) {
431
		fclose(f);
433
		fclose(f);
432
		logit("Authentication refused: %s", line);
434
		logit("Authentication refused: %s", line);
435
		auth_debug_add("Ignored %s: %s", file_type, line);
433
		return NULL;
436
		return NULL;
434
	}
437
	}
435
438

Return to bug 1554