Fix typo in the previous commit...

Signed-off-by: Stéphane Graber <stgraber@ubuntu.com>
This commit is contained in:
Stéphane Graber 2014-08-15 21:32:34 -04:00
parent c08220e9d1
commit 4a7e5f4f20
No known key found for this signature in database
GPG Key ID: C638974D64792D67

View 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) {