summaryrefslogtreecommitdiff
path: root/auth-sia.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2002-02-05 12:40:46 +1100
committerDamien Miller <djm@mindrot.org>2002-02-05 12:40:46 +1100
commitf3451a21819fbcf7a598d202f19329e03e2e5286 (patch)
treea439d303644cc323046bfd288523143c51e6168e /auth-sia.c
parentcb8ea157b8cd234fff302b9f837b860790000d6f (diff)
downloadopenssh-git-f3451a21819fbcf7a598d202f19329e03e2e5286.tar.gz
- (djm) Cleanup after sync:
- :%s/reverse_mapping_check/verify_reverse_mapping/g
Diffstat (limited to 'auth-sia.c')
-rw-r--r--auth-sia.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/auth-sia.c b/auth-sia.c
index 4e947cd4..8585f5d6 100644
--- a/auth-sia.c
+++ b/auth-sia.c
@@ -29,7 +29,7 @@ auth_sia_password(char *user, char *pass)
SIAENTITY *ent = NULL;
const char *host;
- host = get_canonical_hostname(options.reverse_mapping_check);
+ host = get_canonical_hostname(options.verify_reverse_mapping);
if (!user || !pass)
return(0);
@@ -58,7 +58,7 @@ session_setup_sia(char *user, char *tty)
SIAENTITY *ent = NULL;
const char *host;
- host = get_canonical_hostname (options.reverse_mapping_check);
+ host = get_canonical_hostname (options.verify_reverse_mapping);
if (sia_ses_init(&ent, saved_argc, saved_argv, host, user, tty, 0,
NULL) != SIASUCCESS) {