From ab1193b8cb47ca265ec604fa3e3c628d3467c2cc Mon Sep 17 00:00:00 2001 From: Igor Belitskiy Date: Thu, 16 Mar 2023 09:48:11 +0600 Subject: [PATCH] =?UTF-8?q?=D0=98=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=B5=D0=BD=D0=B0=20=D0=BE=D1=88=D0=B8=D0=B1=D0=BA=D0=B0=20?= =?UTF-8?q?=D1=81=20uid?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- source/ublexec.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/ublexec.cc b/source/ublexec.cc index c44462e..41f1f5f 100644 --- a/source/ublexec.cc +++ b/source/ublexec.cc @@ -859,7 +859,7 @@ void MainWindow::pars_users() { } break; } - if ((entry->pw_uid >= 1000 && entry->pw_uid < uid_max) || entry->pw_uid == 0) { + if ((entry->pw_uid >= uid_min && entry->pw_uid < uid_max) || entry->pw_uid == 0) { cmbUser->append(entry->pw_name); } }