From: Thomas Hindoe Paaboel Andersen Date: Tue, 24 Feb 2015 19:47:53 +0000 (+0100) Subject: machined: fix check if host directory could be opened X-Git-Tag: v219.0~582 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;ds=sidebyside;h=858a109f4a336be6c258ae615d31651347b9b67b;hp=76dcbc4992e895a377aad26f8c4a0dcd71002396;p=elogind.git machined: fix check if host directory could be opened CID#1271351 --- diff --git a/src/machine/machine-dbus.c b/src/machine/machine-dbus.c index 334abbdeb..15c915940 100644 --- a/src/machine/machine-dbus.c +++ b/src/machine/machine-dbus.c @@ -871,7 +871,7 @@ int bus_machine_method_copy(sd_bus *bus, sd_bus_message *message, void *userdata container_dirname = dirname(t); hostfd = open(host_dirname, O_CLOEXEC|O_RDONLY|O_NOCTTY|O_DIRECTORY); - if (r < 0) + if (hostfd < 0) return sd_bus_error_set_errnof(error, errno, "Failed to open host directory %s: %m", host_dirname); if (pipe2(errno_pipe_fd, O_CLOEXEC|O_NONBLOCK) < 0)