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; }