fix building on openbsd due to remaining WhiteList

This commit is contained in:
Stephen Gregoratto 2020-09-14 13:18:40 +10:00
parent cd55cfd6d2
commit fd4ada416d
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ ProcessList* ProcessList_new(UsersTable* usersTable, Hashtable* pidMatchList, ui
opl = xCalloc(1, sizeof(OpenBSDProcessList)); opl = xCalloc(1, sizeof(OpenBSDProcessList));
pl = (ProcessList*) opl; pl = (ProcessList*) opl;
size = sizeof(pl->cpuCount); size = sizeof(pl->cpuCount);
ProcessList_init(pl, Class(OpenBSDProcess), usersTable, pidWhiteList, userId); ProcessList_init(pl, Class(OpenBSDProcess), usersTable, pidMatchList, userId);
e = sysctl(mib, 2, &pl->cpuCount, &size, NULL, 0); e = sysctl(mib, 2, &pl->cpuCount, &size, NULL, 0);
if (e == -1 || pl->cpuCount < 1) { if (e == -1 || pl->cpuCount < 1) {