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

Collapse All | Expand All

(-)auth.c (-1 / +2 lines)
Lines 145-151 allowed_user(struct passwd * pw) Link Here
145
		return 0;
145
		return 0;
146
	}
146
	}
147
147
148
	if (options.num_deny_users > 0 || options.num_allow_users > 0) {
148
	if (options.num_deny_users > 0 || options.num_allow_users > 0 ||
149
	    options.num_deny_groups > 0 || options.num_allow_groups > 0) {
149
		hostname = get_canonical_hostname(options.use_dns);
150
		hostname = get_canonical_hostname(options.use_dns);
150
		ipaddr = get_remote_ipaddr();
151
		ipaddr = get_remote_ipaddr();
151
	}
152
	}

Return to bug 999