summaryrefslogtreecommitdiffstats
path: root/src/home
diff options
context:
space:
mode:
authorYu Watanabe <watanabe.yu+github@gmail.com>2024-02-20 01:24:24 +0100
committerYu Watanabe <watanabe.yu+github@gmail.com>2024-02-20 01:25:30 +0100
commit4b6d8de09c21ceba65940fc69c6126a2655b6d57 (patch)
treef50af52300a124c7cb88f4025e9891741b1060a2 /src/home
parentvconsole-setup: fix typo (diff)
downloadsystemd-4b6d8de09c21ceba65940fc69c6126a2655b6d57.tar.xz
systemd-4b6d8de09c21ceba65940fc69c6126a2655b6d57.zip
home: fix typo
Follow-up for 25c89b89771adf3251b2398eaddc3a49c22752e3 and a4d72746c776f820a440d72eaadd49ad158e10dc.
Diffstat (limited to 'src/home')
-rw-r--r--src/home/homed-bus.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/home/homed-bus.c b/src/home/homed-bus.c
index cbd84c231c..bc6e8e37c5 100644
--- a/src/home/homed-bus.c
+++ b/src/home/homed-bus.c
@@ -119,7 +119,7 @@ int bus_message_read_blobs(sd_bus_message *m, Hashmap **ret, sd_bus_error *error
return -errno;
/* Refuse fds w/ unexpected flags set. In particular, we don't want to permit O_PATH FDs, since
- * those don't actually guarentee that the client has access to the file. */
+ * those don't actually guarantee that the client has access to the file. */
if ((flags & ~(O_ACCMODE|RAW_O_LARGEFILE)) != 0)
return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "FD for %s has unexpected flags set", filename);