summaryrefslogtreecommitdiffstats
path: root/lib/libpam
diff options
context:
space:
mode:
authordes <des@FreeBSD.org>2002-04-20 16:52:41 +0000
committerdes <des@FreeBSD.org>2002-04-20 16:52:41 +0000
commit13a8751373172c2aca893f4a08eb38609e41218c (patch)
treed97e2fed658974e4d941191d395a6e16d70523f9 /lib/libpam
parentdc33f36d34bfebcf9ef7fec00121328942ba7184 (diff)
downloadFreeBSD-src-13a8751373172c2aca893f4a08eb38609e41218c.zip
FreeBSD-src-13a8751373172c2aca893f4a08eb38609e41218c.tar.gz
Oops, fix an inverted if test.
Diffstat (limited to 'lib/libpam')
-rw-r--r--lib/libpam/modules/pam_lastlog/pam_lastlog.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libpam/modules/pam_lastlog/pam_lastlog.c b/lib/libpam/modules/pam_lastlog/pam_lastlog.c
index 731f895..e27ec50 100644
--- a/lib/libpam/modules/pam_lastlog/pam_lastlog.c
+++ b/lib/libpam/modules/pam_lastlog/pam_lastlog.c
@@ -91,7 +91,7 @@ pam_sm_open_session(pam_handle_t *pamh, int flags,
return (pam_err);
if (tty == NULL)
return (PAM_SERVICE_ERR);
- if (strncmp(tty, _PATH_DEV, strlen(_PATH_DEV)))
+ if (strncmp(tty, _PATH_DEV, strlen(_PATH_DEV)) == 0)
tty += strlen(_PATH_DEV);
if (*tty == '\0')
return (PAM_SERVICE_ERR);
OpenPOWER on IntegriCloud