Merge pull request #3880 from fufesou/fix/linux_is_prelogin

revert linux is_prelogin
This commit is contained in:
RustDesk 2023-04-01 13:21:01 +08:00 committed by GitHub
commit d56f92eaac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -455,8 +455,8 @@ pub fn get_env_var(k: &str) -> String {
}
pub fn is_prelogin() -> bool {
let (uid, uname) = get_active_user_id_name();
uid.len() >= 4 || uname == "root"
let n = get_active_userid().len();
n < 4 && n > 1
}
pub fn is_root() -> bool {