From: Christian Brauner Date: Tue, 31 Oct 2017 10:16:46 +0000 (+0100) Subject: cgroups/cgfsng: cgfsns_chown() -> cgfsng_chown() X-Git-Tag: lxc-2.0.10~594 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a409c1b3b01dcb9888a8f688fc331f8b1034b9d5;p=thirdparty%2Flxc.git cgroups/cgfsng: cgfsns_chown() -> cgfsng_chown() Signed-off-by: Christian Brauner --- diff --git a/src/lxc/cgroups/cgfsng.c b/src/lxc/cgroups/cgfsng.c index 125ecd395..850bf1425 100644 --- a/src/lxc/cgroups/cgfsng.c +++ b/src/lxc/cgroups/cgfsng.c @@ -1492,7 +1492,7 @@ static int chown_cgroup_wrapper(void *data) return 0; } -static bool cgfsns_chown(void *hdata, struct lxc_conf *conf) +static bool cgfsng_chown(void *hdata, struct lxc_conf *conf) { struct cgfsng_handler_data *d = hdata; struct chown_data wrap; @@ -2058,7 +2058,7 @@ static struct cgroup_ops cgfsng_ops = { .setup_limits = cgfsng_setup_limits, .name = "cgroupfs-ng", .attach = cgfsng_attach, - .chown = cgfsns_chown, + .chown = cgfsng_chown, .mount_cgroup = cgfsng_mount, .nrtasks = cgfsng_nrtasks, .driver = CGFSNG,