]> git.proxmox.com Git - mirror_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:32:34 +0000 (21:32 -0400)
Signed-off-by: Stéphane Graber <stgraber@ubuntu.com>
src/lxc/start.c

index 584049e87f32c96c91f7cea85a94114e34874597..f282b93cfb41a20b26baf2df52b667545c2b4120 100644 (file)
@@ -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) {