diff options
| author | Dag-Erling Smørgrav <des@FreeBSD.org> | 2003-04-30 00:44:05 +0000 |
|---|---|---|
| committer | Dag-Erling Smørgrav <des@FreeBSD.org> | 2003-04-30 00:44:05 +0000 |
| commit | ccd703cfe46dd618f8567fb8014624dac903498c (patch) | |
| tree | ddfe4bbdabb2f5dcd1eb53956ec434e9c1decf19 /lib/libpam/modules/pam_lastlog/pam_lastlog.c | |
| parent | 8ba20a48bd70ea00df3b2c827e3acc1b427bf547 (diff) | |
Notes
Diffstat (limited to 'lib/libpam/modules/pam_lastlog/pam_lastlog.c')
| -rw-r--r-- | lib/libpam/modules/pam_lastlog/pam_lastlog.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libpam/modules/pam_lastlog/pam_lastlog.c b/lib/libpam/modules/pam_lastlog/pam_lastlog.c index 66f61d3a3b26..200f48906fda 100644 --- a/lib/libpam/modules/pam_lastlog/pam_lastlog.c +++ b/lib/libpam/modules/pam_lastlog/pam_lastlog.c @@ -129,7 +129,7 @@ pam_sm_open_session(pam_handle_t *pamh, int flags, /* note: does not need to be NUL-terminated */ strncpy(ll.ll_line, tty, sizeof(ll.ll_line)); - if (rhost != NULL) + if (rhost != NULL && *rhost != '\0') /* note: does not need to be NUL-terminated */ strncpy(ll.ll_host, rhost, sizeof(ll.ll_host)); @@ -145,7 +145,7 @@ pam_sm_open_session(pam_handle_t *pamh, int flags, utmp.ut_time = time(NULL); /* note: does not need to be NUL-terminated */ strncpy(utmp.ut_name, user, sizeof(utmp.ut_name)); - if (rhost != NULL) + if (rhost != NULL && *rhost != '\0') strncpy(utmp.ut_host, rhost, sizeof(utmp.ut_host)); (void)strncpy(utmp.ut_line, tty, sizeof(utmp.ut_line)); login(&utmp); |
