src/api2/access.rs: cleanup

This commit is contained in:
Dietmar Maurer 2020-04-18 07:28:25 +02:00
parent ff329f970b
commit bb072ba49c
1 changed files with 0 additions and 2 deletions

View File

@ -137,8 +137,6 @@ fn change_password(
if userid == "root@pam" { allowed = true; } if userid == "root@pam" { allowed = true; }
if !allowed { if !allowed {
use crate::config::cached_user_info::CachedUserInfo;
let user_info = CachedUserInfo::new()?; let user_info = CachedUserInfo::new()?;
let privs = user_info.lookup_privs(&current_user, &[]); let privs = user_info.lookup_privs(&current_user, &[]);
if (privs & PRIV_PERMISSIONS_MODIFY) != 0 { allowed = true; } if (privs & PRIV_PERMISSIONS_MODIFY) != 0 { allowed = true; }