From 33fe212d1f132f1d3a5a281cc3d28217fcab318c Mon Sep 17 00:00:00 2001 From: Balbir Singh Date: Wed, 24 Mar 2010 12:48:45 +0530 Subject: [PATCH] Fix typo in wrapper.c (cgroup_get_uid_gid) Fix the typo in our cgroup_get_uid_gid routine We seem to have a typo in the function, the fix is quite obvious. Reported-by: Ciju Rajan K Signed-off-by: Balbir Singh Signed-off-by: Dhaval Giani --- 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