Commit dccffc82 by Wolfgang Bumiller

conf: don't return a clobbered errno value

parent 3437f95c
...@@ -1418,7 +1418,7 @@ int lxc_chroot(const struct lxc_rootfs *rootfs) ...@@ -1418,7 +1418,7 @@ int lxc_chroot(const struct lxc_rootfs *rootfs)
f = fopen("./proc/self/mountinfo", "r"); f = fopen("./proc/self/mountinfo", "r");
if (!f) { if (!f) {
SYSERROR("Failed to open \"/proc/self/mountinfo\""); SYSERROR("Failed to open \"/proc/self/mountinfo\"");
return -errno; return -1;
} }
while (fgets(buf, LXC_LINELEN, f)) { while (fgets(buf, LXC_LINELEN, f)) {
...@@ -3466,7 +3466,7 @@ int lxc_setup_rootfs_prepare_root(struct lxc_conf *conf, const char *name, ...@@ -3466,7 +3466,7 @@ int lxc_setup_rootfs_prepare_root(struct lxc_conf *conf, const char *name,
ret = mount(path, path, "rootfs", MS_BIND, NULL); ret = mount(path, path, "rootfs", MS_BIND, NULL);
if (ret < 0) { if (ret < 0) {
ERROR("Failed to bind mount container / onto itself"); ERROR("Failed to bind mount container / onto itself");
return -errno; return -1;
} }
TRACE("Bind mounted container / onto itself"); TRACE("Bind mounted container / onto itself");
......
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