From: Stéphane Graber Date: Sat, 16 Aug 2014 01:32:34 +0000 (-0400) Subject: Fix typo in the previous commit... X-Git-Tag: lxc-1.1.0.alpha2~72 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4a7e5f4f2043e28bcd28ce076543359b2eb8be0e;p=thirdparty%2Flxc.git Fix typo in the previous commit... Signed-off-by: Stéphane Graber --- diff --git a/src/lxc/start.c b/src/lxc/start.c index 584049e87..f282b93cf 100644 --- a/src/lxc/start.c +++ b/src/lxc/start.c @@ -549,9 +549,9 @@ static int must_drop_cap_sys_boot(struct lxc_conf *conf) #endif if (pid < 0) { if (flags & CLONE_NEWUSER) - ERRROR("failed to clone (%#x): %s (includes CLONE_NEWUSER)", flags, strerror(errno)); + ERROR("failed to clone (%#x): %s (includes CLONE_NEWUSER)", flags, strerror(errno)); else - ERRROR("failed to clone (%#x): %s", flags, strerror(errno)); + ERROR("failed to clone (%#x): %s", flags, strerror(errno)); return -1; } if (wait(&status) < 0) {