[openssh-commits] [openssh] 01/01: get_remote_name_or_ip inside LOGIN_NEEDS_UTMPX
git+noreply at mindrot.org
git+noreply at mindrot.org
Mon Jun 20 15:58:11 AEST 2016
This is an automated email from the git hooks/post-receive script.
dtucker pushed a commit to branch master
in repository openssh.
commit aa37768f17d01974b6bfa481e5e83841b6c76f86
Author: Darren Tucker <dtucker at zip.com.au>
Date: Mon Jun 20 15:55:34 2016 +1000
get_remote_name_or_ip inside LOGIN_NEEDS_UTMPX
Apply the same get_remote_name_or_ip -> session_get_remote_name_or_ip
change as commit 95767262 to the code inside #ifdef LOGIN_NEEDS_UTMPX.
Fixes build on AIX.
---
session.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/session.c b/session.c
index 4653b09..2235f26 100644
--- a/session.c
+++ b/session.c
@@ -769,6 +769,7 @@ do_exec_pty(Session *s, const char *command)
static void
do_pre_login(Session *s)
{
+ struct ssh *ssh = active_state; /* XXX */
socklen_t fromlen;
struct sockaddr_storage from;
pid_t pid = getpid();
@@ -788,7 +789,7 @@ do_pre_login(Session *s)
}
record_utmp_only(pid, s->tty, s->pw->pw_name,
- get_remote_name_or_ip(utmp_len, options.use_dns),
+ session_get_remote_name_or_ip(ssh, utmp_len, options.use_dns),
(struct sockaddr *)&from, fromlen);
}
#endif
--
To stop receiving notification emails like this one, please contact
djm at mindrot.org.
More information about the openssh-commits
mailing list