From 9232212afdad25536afc8d241606e00eac3b0c87 Mon Sep 17 00:00:00 2001 From: Ferenc Wagner Date: Wed, 12 May 2010 23:47:55 +0200 Subject: [PATCH] fix typos in error messages Signed-off-by: Ferenc Wagner Signed-off-by: Daniel Lezcano --- src/lxc/conf.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lxc/conf.c b/src/lxc/conf.c index 39aa98202..2c9bc4e1d 100644 --- a/src/lxc/conf.c +++ b/src/lxc/conf.c @@ -468,7 +468,7 @@ static int setup_rootfs_pivot_root(const char *rootfs, const char *pivotdir) /* change into new root fs */ if (chdir(rootfs)) { - SYSERROR("can't chroot to new rootfs '%s'", rootfs); + SYSERROR("can't chdir to new rootfs '%s'", rootfs); return -1; } @@ -499,7 +499,7 @@ static int setup_rootfs_pivot_root(const char *rootfs, const char *pivotdir) } if (chdir("/")) { - SYSERROR("can't chroot to / after pivot_root"); + SYSERROR("can't chdir to / after pivot_root"); return -1; } -- 2.47.2