]> git.ipfire.org Git - thirdparty/lxc.git/commitdiff
conf: non-functional changes
authorChristian Brauner <christian.brauner@ubuntu.com>
Sun, 28 May 2017 22:18:37 +0000 (00:18 +0200)
committerStéphane Graber <stgraber@ubuntu.com>
Tue, 15 Aug 2017 21:35:57 +0000 (17:35 -0400)
Signed-off-by: Christian Brauner <christian.brauner@ubuntu.com>
src/lxc/conf.c

index c90540e2e9c649d19b676bb2451c1dcbe1525b0d..df6e50131b91eeefebff2b7a36cf76b738a6bd69 100644 (file)
@@ -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;