summaryrefslogtreecommitdiffstats
path: root/src/home/homed-home-bus.c
diff options
context:
space:
mode:
authorVito Caputo <vcaputo@pengaru.com>2020-03-31 12:50:13 +0200
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2020-03-31 15:16:36 +0200
commit80ace4f25e08989c84302fdd8d38f000ded2eaee (patch)
tree0e69e8f24cacbda1a24157ea115eaee7c47a809c /src/home/homed-home-bus.c
parentuser-util: switch order of checks in valid_user_group_name_or_id_full() (diff)
downloadsystemd-80ace4f25e08989c84302fdd8d38f000ded2eaee.tar.xz
systemd-80ace4f25e08989c84302fdd8d38f000ded2eaee.zip
home: fix several typos
Diffstat (limited to 'src/home/homed-home-bus.c')
-rw-r--r--src/home/homed-home-bus.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/home/homed-home-bus.c b/src/home/homed-home-bus.c
index 02a87a5ec5..6b4fa58a6f 100644
--- a/src/home/homed-home-bus.c
+++ b/src/home/homed-home-bus.c
@@ -630,7 +630,7 @@ int bus_home_method_acquire(
/* This operation might not be something we can executed immediately, hence queue it */
fd = home_create_fifo(h, please_suspend);
if (fd < 0)
- return sd_bus_reply_method_errnof(message, fd, "Failed to allocate fifo for %s: %m", h->user_name);
+ return sd_bus_reply_method_errnof(message, fd, "Failed to allocate FIFO for %s: %m", h->user_name);
o = operation_new(OPERATION_ACQUIRE, message);
if (!o)
@@ -681,7 +681,7 @@ int bus_home_method_ref(
fd = home_create_fifo(h, please_suspend);
if (fd < 0)
- return sd_bus_reply_method_errnof(message, fd, "Failed to allocate fifo for %s: %m", h->user_name);
+ return sd_bus_reply_method_errnof(message, fd, "Failed to allocate FIFO for %s: %m", h->user_name);
return sd_bus_reply_method_return(message, "h", fd);
}