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)
- (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 4e947cd4e..8585f5d6b 100644
--- a/auth-sia.c
+++ b/auth-sia.c
@@ -29,7 +29,7 @@ auth_sia_password(char *user, char *pass)
29 SIAENTITY *ent = NULL; 29 SIAENTITY *ent = NULL;
30 const char *host; 30 const char *host;
31 31
32 host = get_canonical_hostname(options.reverse_mapping_check); 32 host = get_canonical_hostname(options.verify_reverse_mapping);
33 33
34 if (!user || !pass) 34 if (!user || !pass)
35 return(0); 35 return(0);
@@ -58,7 +58,7 @@ session_setup_sia(char *user, char *tty)
58 SIAENTITY *ent = NULL; 58 SIAENTITY *ent = NULL;
59 const char *host; 59 const char *host;
60 60
61 host = get_canonical_hostname (options.reverse_mapping_check); 61 host = get_canonical_hostname (options.verify_reverse_mapping);
62 62
63 if (sia_ses_init(&ent, saved_argc, saved_argv, host, user, tty, 0, 63 if (sia_ses_init(&ent, saved_argc, saved_argv, host, user, tty, 0,
64 NULL) != SIASUCCESS) { 64 NULL) != SIASUCCESS) {