]> andersk Git - openssh.git/commitdiff
- (dtucker) [port-aix.c bsd-cray.c] Fix uses of verify_reverse_mapping.
authordtucker <dtucker>
Tue, 3 Jun 2003 02:45:27 +0000 (02:45 +0000)
committerdtucker <dtucker>
Tue, 3 Jun 2003 02:45:27 +0000 (02:45 +0000)
ChangeLog
openbsd-compat/bsd-cray.c
openbsd-compat/port-aix.c

index 1b37e88d235d233f6befa74b5d5198e0960a9a3e..b7e33247d7be15152b02266ada5fecc054f22279 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -14,6 +14,7 @@
  - (djm) Fix portable-specific uses of verify_reverse_mapping too
  - (djm) Sync openbsd-compat with OpenBSD CVS. 
     - No more 4-term BSD licenses in our tree
+ - (dtucker) [port-aix.c bsd-cray.c] Fix uses of verify_reverse_mapping.
 
 20030602
  - (djm) Fix segv from bad reordering in auth-pam.c
index 52ddfdfb367a6de66886c46f6a0b53093c0dd5b4..7b8cfb142eacb257aec439132fffa1ea20e3ff9e 100644 (file)
@@ -103,7 +103,7 @@ cray_login_failure(char *username, int errcode)
        memset(&fsent, '\0', sizeof(fsent));
        fsent.revision = 0;
        fsent.uname = username;
-       fsent.host = (char *)get_canonical_hostname(options.verify_reverse_mapping);
+       fsent.host = (char *)get_canonical_hostname(options.use_dns);
        fsent.ttyn = "sshd";
        fsent.caller = IA_SSHD;
        fsent.flags = IA_INTERACTIVE;
@@ -199,7 +199,7 @@ cray_setup (uid_t uid, char *username, const char *command)
        }
        hostname[0] = '\0';
        strlcpy(hostname,
-          (char *)get_canonical_hostname(options.verify_reverse_mapping),
+          (char *)get_canonical_hostname(options.use_dns),
           MAXHOSTNAMELEN);
        /*
         *  Fetch user's UDB entry.
index f192a4e79f629c629e774224efd35a6030492018..b4c9454a1f5d914a925b9b495092e16bc64b7a4a 100644 (file)
@@ -68,7 +68,7 @@ aix_usrinfo(struct passwd *pw)
 void
 record_failed_login(const char *user, const char *ttyname)
 {
-       char *hostname = get_canonical_hostname(options.verify_reverse_mapping);
+       char *hostname = get_canonical_hostname(options.use_dns);
 
        loginfailed(user, hostname, ttyname);
 }
This page took 0.041781 seconds and 5 git commands to generate.