diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-09-28 15:35:51 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-09-28 15:35:51 +0000 |
commit | df774c69493aa7441abd8c9c24df3b8979289758 (patch) | |
tree | 8f28c948b17b6d83814ae2dc853eff19754ee7b6 /usr.sbin/pppd/auth.c | |
parent | e7041593ee86d55012b27bd71408dc1960c9d018 (diff) |
write lastlog; mason@primenet.com.au
Diffstat (limited to 'usr.sbin/pppd/auth.c')
-rw-r--r-- | usr.sbin/pppd/auth.c | 22 |
1 files changed, 20 insertions, 2 deletions
diff --git a/usr.sbin/pppd/auth.c b/usr.sbin/pppd/auth.c index a40c8e5143e..93fae88b556 100644 --- a/usr.sbin/pppd/auth.c +++ b/usr.sbin/pppd/auth.c @@ -1,4 +1,4 @@ -/* $OpenBSD: auth.c,v 1.10 1997/09/05 04:32:33 millert Exp $ */ +/* $OpenBSD: auth.c,v 1.11 1997/09/28 15:35:50 deraadt Exp $ */ /* * auth.c - PPP authentication and phase control. @@ -38,7 +38,7 @@ #if 0 static char rcsid[] = "Id: auth.c,v 1.32 1997/07/14 03:52:33 paulus Exp"; #else -static char rcsid[] = "$OpenBSD: auth.c,v 1.10 1997/09/05 04:32:33 millert Exp $"; +static char rcsid[] = "$OpenBSD: auth.c,v 1.11 1997/09/28 15:35:50 deraadt Exp $"; #endif #endif @@ -48,6 +48,8 @@ static char rcsid[] = "$OpenBSD: auth.c,v 1.10 1997/09/05 04:32:33 millert Exp $ #include <unistd.h> #include <syslog.h> #include <pwd.h> +#include <utmp.h> +#include <fcntl.h> #include <string.h> #include <sys/types.h> #include <sys/stat.h> @@ -817,6 +819,22 @@ login(user, passwd, msg, msglen) if (strncmp(tty, "/dev/", 5) == 0) tty += 5; logwtmp(tty, user, remote_name); /* Add wtmp login entry */ + +#ifdef _PATH_LASTLOG +{ + struct lastlog ll; + int fd; + + if ((fd = open(_PATH_LASTLOG, O_RDWR, 0)) >= 0) { + (void)lseek(fd, (off_t)pw->pw_uid * sizeof(ll), SEEK_SET); + memset(&ll, 0, sizeof(ll)); + time(&ll.ll_time); + strncpy(ll.ll_line, tty, sizeof(ll.ll_line)); + write(fd, (char *)&ll, sizeof(ll)); + close(fd); + } +} +#endif logged_in = TRUE; return (UPAP_AUTHACK); |