diff options
author | Damien Miller <djm@mindrot.org> | 2002-02-05 02:40:46 +0100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2002-02-05 02:40:46 +0100 |
commit | f3451a21819fbcf7a598d202f19329e03e2e5286 (patch) | |
tree | a439d303644cc323046bfd288523143c51e6168e /auth-sia.c | |
parent | - djm@cvs.openbsd.org 2002/02/05 00:00:46 (diff) | |
download | openssh-f3451a21819fbcf7a598d202f19329e03e2e5286.tar.xz openssh-f3451a21819fbcf7a598d202f19329e03e2e5286.zip |
- (djm) Cleanup after sync:
- :%s/reverse_mapping_check/verify_reverse_mapping/g
Diffstat (limited to 'auth-sia.c')
-rw-r--r-- | auth-sia.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/auth-sia.c b/auth-sia.c index 4e947cd4e..8585f5d6b 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) { |