conf: non-functional changes

Signed-off-by: Christian Brauner <christian.brauner@ubuntu.com>
This commit is contained in:
Christian Brauner 2017-05-29 00:18:37 +02:00
parent f6104dffa3
commit bc80f0980b
No known key found for this signature in database
GPG Key ID: 8EB056D53EECB12D

View File

@ -3744,12 +3744,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;