diff options
author | SjonHortensius <SjonHortensius@users.noreply.github.com> | 2018-03-04 13:12:45 +0100 |
---|---|---|
committer | Yu Watanabe <watanabe.yu+github@gmail.com> | 2018-03-04 21:12:45 +0900 |
commit | fe4a1d0f0decd8c89a335be665b3d5be9355e3a2 (patch) | |
tree | 0b186eb0b88e822f1bc5d5b50c0ec019abc9fe0a /src/machine/machine-dbus.c | |
parent | d5339ab1237c576bb2052b83dcb585ee4c42cff1 (diff) | |
download | systemd-fe4a1d0f0decd8c89a335be665b3d5be9355e3a2.tar.gz |
fixed 3 occurences of 'Failed top open' (#8349)
Diffstat (limited to 'src/machine/machine-dbus.c')
-rw-r--r-- | src/machine/machine-dbus.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/machine/machine-dbus.c b/src/machine/machine-dbus.c index 2d7806491b..9c435d6715 100644 --- a/src/machine/machine-dbus.c +++ b/src/machine/machine-dbus.c @@ -1204,7 +1204,7 @@ int bus_machine_method_copy(sd_bus_message *message, void *userdata, sd_bus_erro containerfd = open(container_dirname, O_CLOEXEC|O_RDONLY|O_NOCTTY|O_DIRECTORY); if (containerfd < 0) { - r = log_error_errno(errno, "Failed top open destination directory: %m"); + r = log_error_errno(errno, "Failed to open destination directory: %m"); goto child_fail; } |