From 21e244c9260931df7d57b80178faca9032452a85 Mon Sep 17 00:00:00 2001 From: Balbir Singh Date: Wed, 24 Mar 2010 12:47:11 +0530 Subject: [PATCH] Fix the typo in our cgroup_get_uid_gid routine Reported-by: Ciju Rajan K We seem to have a typo in the function, the fix is quite obvious. Signed-off-by: Balbir Singh --- src/wrapper.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wrapper.c b/src/wrapper.c index 53d70a9b..99d2a688 100644 --- a/src/wrapper.c +++ b/src/wrapper.c @@ -333,7 +333,7 @@ int cgroup_get_uid_gid(struct cgroup *cgroup, uid_t *tasks_uid, *tasks_uid = cgroup->tasks_uid; *tasks_gid = cgroup->tasks_gid; *control_uid = cgroup->control_uid; - *control_gid = cgroup->control_uid; + *control_gid = cgroup->control_gid; return 0; } -- 2.47.2