Commit 196ab66b by Stéphane Graber

Fix typo in the previous commit...

parent 99e5ef73
...@@ -548,9 +548,9 @@ static int must_drop_cap_sys_boot(struct lxc_conf *conf) ...@@ -548,9 +548,9 @@ static int must_drop_cap_sys_boot(struct lxc_conf *conf)
#endif #endif
if (pid < 0) { if (pid < 0) {
if (flags & CLONE_NEWUSER) 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 else
ERRROR("failed to clone (%#x): %s", flags, strerror(errno)); ERROR("failed to clone (%#x): %s", flags, strerror(errno));
return -1; return -1;
} }
if (wait(&status) < 0) { 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