From: Ferenc Wagner Date: Wed, 12 May 2010 21:47:55 +0000 (+0200) Subject: fix typos in error messages X-Git-Tag: lxc-0.7.0~71 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9232212afdad25536afc8d241606e00eac3b0c87;p=thirdparty%2Flxc.git fix typos in error messages Signed-off-by: Ferenc Wagner Signed-off-by: Daniel Lezcano --- 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; }