Fix typo in the previous commit...

parent c08220e9
......@@ -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) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment