diff options
author | 2002-01-29 14:32:03 +0000 | |
---|---|---|
committer | 2002-01-29 14:32:03 +0000 | |
commit | 9481501ea729385dd9aec237dbe597d58ed49d2e (patch) | |
tree | 89b2d639ca3ec080755a1ef0c4eb5a8f05950588 /usr.bin/ssh/auth.c | |
parent | process the delayed-free queue more often; chs@netbsd.org (diff) | |
download | wireguard-openbsd-9481501ea729385dd9aec237dbe597d58ed49d2e.tar.xz wireguard-openbsd-9481501ea729385dd9aec237dbe597d58ed49d2e.zip |
s/ReverseMappingCheck/VerifyReverseMapping/ and avoid confusion; ok stevesk@
Diffstat (limited to 'usr.bin/ssh/auth.c')
-rw-r--r-- | usr.bin/ssh/auth.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/auth.c b/usr.bin/ssh/auth.c index 47f316f29a3..f2270d985a3 100644 --- a/usr.bin/ssh/auth.c +++ b/usr.bin/ssh/auth.c @@ -23,7 +23,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: auth.c,v 1.31 2001/12/19 07:18:56 deraadt Exp $"); +RCSID("$OpenBSD: auth.c,v 1.32 2002/01/29 14:32:03 markus Exp $"); #include <libgen.h> @@ -77,7 +77,7 @@ allowed_user(struct passwd * pw) return 0; if (options.num_deny_users > 0 || options.num_allow_users > 0) { - hostname = get_canonical_hostname(options.reverse_mapping_check); + hostname = get_canonical_hostname(options.verify_reverse_mapping); ipaddr = get_remote_ipaddr(); } |