summaryrefslogtreecommitdiffstats
path: root/unsupported
diff options
context:
space:
mode:
authorNathan Scott <nathans@redhat.com>2020-09-09 19:38:15 +1000
committerNathan Scott <nathans@redhat.com>2020-09-09 19:38:15 +1000
commit459733295954ec0d5958f9a8d955d0c164876c84 (patch)
treefe10a871c5c51bc7f98e275242bbed0276788415 /unsupported
parentc5808c56db166528ae7e74cedb51cc466f973b9f (diff)
Switch variable/field naming from WhiteList to MatchList
Diffstat (limited to 'unsupported')
-rw-r--r--unsupported/UnsupportedProcessList.c4
-rw-r--r--unsupported/UnsupportedProcessList.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/unsupported/UnsupportedProcessList.c b/unsupported/UnsupportedProcessList.c
index cad579c2..fc8a54dc 100644
--- a/unsupported/UnsupportedProcessList.c
+++ b/unsupported/UnsupportedProcessList.c
@@ -12,9 +12,9 @@ in the source distribution for its full text.
#include <string.h>
-ProcessList* ProcessList_new(UsersTable* usersTable, Hashtable* pidWhiteList, uid_t userId) {
+ProcessList* ProcessList_new(UsersTable* usersTable, Hashtable* pidMatchList, uid_t userId) {
ProcessList* this = xCalloc(1, sizeof(ProcessList));
- ProcessList_init(this, Class(Process), usersTable, pidWhiteList, userId);
+ ProcessList_init(this, Class(Process), usersTable, pidMatchList, userId);
return this;
}
diff --git a/unsupported/UnsupportedProcessList.h b/unsupported/UnsupportedProcessList.h
index 69a7c1c7..c4b51acf 100644
--- a/unsupported/UnsupportedProcessList.h
+++ b/unsupported/UnsupportedProcessList.h
@@ -7,7 +7,7 @@ Released under the GNU GPL, see the COPYING file
in the source distribution for its full text.
*/
-ProcessList* ProcessList_new(UsersTable* usersTable, Hashtable* pidWhiteList, uid_t userId);
+ProcessList* ProcessList_new(UsersTable* usersTable, Hashtable* pidMatchList, uid_t userId);
void ProcessList_delete(ProcessList* this);

© 2014-2024 Faster IT GmbH | imprint | privacy policy