diff options
Diffstat (limited to 'modules/pam_setquota')
-rw-r--r-- | modules/pam_setquota/pam_setquota.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/pam_setquota/pam_setquota.c b/modules/pam_setquota/pam_setquota.c index 9c05862a..01b05e38 100644 --- a/modules/pam_setquota/pam_setquota.c +++ b/modules/pam_setquota/pam_setquota.c @@ -275,7 +275,7 @@ pam_sm_open_session(pam_handle_t *pamh, int flags UNUSED, */ if ((mnt_len > match_size || (mnt_len == 0 && mnt->mnt_dir[0] == '/')) && (s = pam_str_skip_prefix_len(pwd->pw_dir, mnt->mnt_dir, mnt_len)) != NULL && - (s[0] == '\0' || s[0] == '/')) { + s[0] == '/') { free(mntdevice); if ((mntdevice = strdup(mnt->mnt_fsname)) == NULL) { pam_syslog(pamh, LOG_CRIT, "Memory allocation error"); |