diff options
| author | Dag-Erling Smørgrav <des@FreeBSD.org> | 2002-05-30 20:48:59 +0000 |
|---|---|---|
| committer | Dag-Erling Smørgrav <des@FreeBSD.org> | 2002-05-30 20:48:59 +0000 |
| commit | eb6f605e2f7e699458fce50fd7115715317bcf1c (patch) | |
| tree | 55a2ce7020f4192f746d5a1b4727a4841da82cea /lib | |
| parent | 78ebc785c2e892144ba75701972de56d4e20659f (diff) | |
Notes
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/libpam/modules/pam_lastlog/pam_lastlog.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/libpam/modules/pam_lastlog/pam_lastlog.c b/lib/libpam/modules/pam_lastlog/pam_lastlog.c index 5e749675f285..f33d0a6cfd74 100644 --- a/lib/libpam/modules/pam_lastlog/pam_lastlog.c +++ b/lib/libpam/modules/pam_lastlog/pam_lastlog.c @@ -88,8 +88,10 @@ pam_sm_open_session(pam_handle_t *pamh, int flags, pam_err = pam_get_item(pamh, PAM_TTY, (const void **)&tty); if (pam_err != PAM_SUCCESS) goto err; - if (tty == NULL) - return (PAM_SERVICE_ERR); + if (tty == NULL) { + pam_err = PAM_SERVICE_ERR; + goto err; + } if (strncmp(tty, _PATH_DEV, strlen(_PATH_DEV)) == 0) tty += strlen(_PATH_DEV); if (*tty == '\0') |
