]> git.ipfire.org Git - thirdparty/lxc.git/commitdiff
Fix typo in the previous commit...
authorStéphane Graber <stgraber@ubuntu.com>
Sat, 16 Aug 2014 01:32:34 +0000 (21:32 -0400)
committerStéphane Graber <stgraber@ubuntu.com>
Sat, 16 Aug 2014 01:48:17 +0000 (21:48 -0400)
Signed-off-by: Stéphane Graber <stgraber@ubuntu.com>
src/lxc/start.c

index 1e49bbe2e3768e1e354d5d864395866e9ca39c55..715c20760aa109b2123790950ebcf0154a04af47 100644 (file)
@@ -548,9 +548,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) {