summaryrefslogtreecommitdiff
path: root/src/machine/machined-dbus.c
diff options
context:
space:
mode:
authorSjonHortensius <SjonHortensius@users.noreply.github.com>2018-03-04 13:12:45 +0100
committerYu Watanabe <watanabe.yu+github@gmail.com>2018-03-04 21:12:45 +0900
commitfe4a1d0f0decd8c89a335be665b3d5be9355e3a2 (patch)
tree0b186eb0b88e822f1bc5d5b50c0ec019abc9fe0a /src/machine/machined-dbus.c
parentd5339ab1237c576bb2052b83dcb585ee4c42cff1 (diff)
downloadsystemd-fe4a1d0f0decd8c89a335be665b3d5be9355e3a2.tar.gz
fixed 3 occurences of 'Failed top open' (#8349)
Diffstat (limited to 'src/machine/machined-dbus.c')
-rw-r--r--src/machine/machined-dbus.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/machine/machined-dbus.c b/src/machine/machined-dbus.c
index c5e59c4716..2eb97ebed0 100644
--- a/src/machine/machined-dbus.c
+++ b/src/machine/machined-dbus.c
@@ -1327,7 +1327,7 @@ static int method_map_to_machine_user(sd_bus_message *message, void *userdata, s
xsprintf(p, "/proc/" UID_FMT "/uid_map", machine->leader);
f = fopen(p, "re");
if (!f) {
- log_warning_errno(errno, "Failed top open %s, ignoring,", p);
+ log_warning_errno(errno, "Failed to open %s, ignoring,", p);
continue;
}
@@ -1445,7 +1445,7 @@ static int method_map_to_machine_group(sd_bus_message *message, void *groupdata,
xsprintf(p, "/proc/" GID_FMT "/gid_map", machine->leader);
f = fopen(p, "re");
if (!f) {
- log_warning_errno(errno, "Failed top open %s, ignoring,", p);
+ log_warning_errno(errno, "Failed to open %s, ignoring,", p);
continue;
}