mirror of
https://github.com/PowerShell/openssh-portable.git
synced 2025-07-30 17:25:09 +02:00
- Use last few chars of tty line as ut_id
This commit is contained in:
parent
438dfa9dea
commit
e12762437c
@ -7,6 +7,7 @@
|
|||||||
- PAM bugfix. PermitEmptyPassword was being ignored.
|
- PAM bugfix. PermitEmptyPassword was being ignored.
|
||||||
- Fixed PAM config files to allow empty passwords if server does.
|
- Fixed PAM config files to allow empty passwords if server does.
|
||||||
- Explained spurious PAM auth warning workaround in UPGRADING
|
- Explained spurious PAM auth warning workaround in UPGRADING
|
||||||
|
- Use last few chars of tty line as ut_id
|
||||||
|
|
||||||
19991226
|
19991226
|
||||||
- Enabled utmpx support by default for Solaris
|
- Enabled utmpx support by default for Solaris
|
||||||
|
4
login.c
4
login.c
@ -18,7 +18,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include "includes.h"
|
#include "includes.h"
|
||||||
RCSID("$Id: login.c,v 1.12 1999/12/25 23:21:48 damien Exp $");
|
RCSID("$Id: login.c,v 1.13 1999/12/27 00:33:56 damien Exp $");
|
||||||
|
|
||||||
#if defined(HAVE_UTMPX_H) && defined(USE_UTMPX)
|
#if defined(HAVE_UTMPX_H) && defined(USE_UTMPX)
|
||||||
# include <utmpx.h>
|
# include <utmpx.h>
|
||||||
@ -141,6 +141,7 @@ record_login(int pid, const char *ttyname, const char *user, uid_t uid,
|
|||||||
/* Construct an utmp/wtmp entry. */
|
/* Construct an utmp/wtmp entry. */
|
||||||
memset(&u, 0, sizeof(u));
|
memset(&u, 0, sizeof(u));
|
||||||
strncpy(u.ut_line, ttyname + 5, sizeof(u.ut_line));
|
strncpy(u.ut_line, ttyname + 5, sizeof(u.ut_line));
|
||||||
|
strncpy(u.ut_id, ttyname + 8, sizeof(u.ut_id));
|
||||||
u.ut_pid = (pid_t)pid;
|
u.ut_pid = (pid_t)pid;
|
||||||
u.ut_time = time(NULL);
|
u.ut_time = time(NULL);
|
||||||
strncpy(u.ut_name, user, sizeof(u.ut_name));
|
strncpy(u.ut_name, user, sizeof(u.ut_name));
|
||||||
@ -153,6 +154,7 @@ record_login(int pid, const char *ttyname, const char *user, uid_t uid,
|
|||||||
memset(&utx, 0, sizeof(utx));
|
memset(&utx, 0, sizeof(utx));
|
||||||
strncpy(utx.ut_user, user, sizeof(utx.ut_name));
|
strncpy(utx.ut_user, user, sizeof(utx.ut_name));
|
||||||
strncpy(utx.ut_line, ttyname + 5, sizeof(utx.ut_line));
|
strncpy(utx.ut_line, ttyname + 5, sizeof(utx.ut_line));
|
||||||
|
strncpy(utx.ut_id, ttyname + 8, sizeof(utx.ut_id));
|
||||||
utx.ut_pid = (pid_t)pid;
|
utx.ut_pid = (pid_t)pid;
|
||||||
utx.ut_tv.tv_sec = time(NULL);
|
utx.ut_tv.tv_sec = time(NULL);
|
||||||
utx.ut_type = (uid == -1)?DEAD_PROCESS:USER_PROCESS;
|
utx.ut_type = (uid == -1)?DEAD_PROCESS:USER_PROCESS;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user