From 1133404c73134b36e259af6ff69719ea10f25f4a Mon Sep 17 00:00:00 2001 From: Richard Weinberger Date: Fri, 14 Jun 2013 08:57:55 +0200 Subject: [PATCH] LXC: s/chroot/chdir in lxcContainerPivotRoot() ...fixes a trivial copy&paste error. Signed-off-by: Richard Weinberger --- src/lxc/lxc_container.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lxc/lxc_container.c b/src/lxc/lxc_container.c index 181f6c827e..f288c533a0 100644 --- a/src/lxc/lxc_container.c +++ b/src/lxc/lxc_container.c @@ -629,11 +629,11 @@ static int lxcContainerPivotRoot(virDomainFSDefPtr root) } } - /* Now we chroot into the tmpfs, then pivot into the + /* Now we chdir into the tmpfs, then pivot into the * root->src bind-mounted onto '/new' */ if (chdir(newroot) < 0) { virReportSystemError(errno, - _("Failed to chroot into %s"), newroot); + _("Failed to chdir into %s"), newroot); goto err; } -- 2.47.2