From: Christian Brauner Date: Sun, 28 May 2017 22:18:37 +0000 (+0200) Subject: conf: non-functional changes X-Git-Tag: lxc-1.0.11~43 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8aeafb4189487536b02869e759338945e6eaa0bb;p=thirdparty%2Flxc.git conf: non-functional changes Signed-off-by: Christian Brauner --- diff --git a/src/lxc/conf.c b/src/lxc/conf.c index c90540e2e..df6e50131 100644 --- a/src/lxc/conf.c +++ b/src/lxc/conf.c @@ -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;