summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog1
-rw-r--r--sshlogin.h2
2 files changed, 2 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 3b79b5d29..fdce70566 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -4,6 +4,7 @@
4 otherwise have been retrievable via getsockopt(). A hack to limit writes 4 otherwise have been retrievable via getsockopt(). A hack to limit writes
5 to TTYs on AIX was triggering this. Since only AIX needs the hack, wrap 5 to TTYs on AIX was triggering this. Since only AIX needs the hack, wrap
6 it in an #ifdef. Diagnosis and patch from Ivo Raisr. 6 it in an #ifdef. Diagnosis and patch from Ivo Raisr.
7 - (djm) [sshlogin.h] Fix prototype merge botch from 2006; bz#2134
7 8
820130725 920130725
9 - (djm) OpenBSD CVS Sync 10 - (djm) OpenBSD CVS Sync
diff --git a/sshlogin.h b/sshlogin.h
index 500d3fefd..52119a979 100644
--- a/sshlogin.h
+++ b/sshlogin.h
@@ -15,7 +15,7 @@
15void record_login(pid_t, const char *, const char *, uid_t, 15void record_login(pid_t, const char *, const char *, uid_t,
16 const char *, struct sockaddr *, socklen_t); 16 const char *, struct sockaddr *, socklen_t);
17void record_logout(pid_t, const char *, const char *); 17void record_logout(pid_t, const char *, const char *);
18time_t get_last_login_time(uid_t, const char *, char *, u_int); 18time_t get_last_login_time(uid_t, const char *, char *, size_t);
19 19
20#ifdef LOGIN_NEEDS_UTMPX 20#ifdef LOGIN_NEEDS_UTMPX
21void record_utmp_only(pid_t, const char *, const char *, const char *, 21void record_utmp_only(pid_t, const char *, const char *, const char *,