Unverified Commit 8aeafb41 by Christian Brauner Committed by Stéphane Graber

conf: non-functional changes

parent 66ebf6a1
......@@ -3865,12 +3865,12 @@ int chown_mapped_root(char *path, struct lxc_conf *conf)
char *chownpath = path;
if (!get_mapped_rootid(conf, ID_TYPE_UID, &val)) {
ERROR("No mapping for container root");
ERROR("No uid mapping for container root");
return -1;
}
rootuid = (uid_t) val;
if (!get_mapped_rootid(conf, ID_TYPE_GID, &val)) {
ERROR("No mapping for container root");
ERROR("No gid mapping for container root");
return -1;
}
rootgid = (gid_t) val;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment