From: Yu Watanabe Date: Tue, 20 Feb 2024 00:24:24 +0000 (+0900) Subject: home: fix typo X-Git-Tag: v256-rc1~805 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4b6d8de09c21ceba65940fc69c6126a2655b6d57;p=thirdparty%2Fsystemd.git home: fix typo Follow-up for 25c89b89771adf3251b2398eaddc3a49c22752e3 and a4d72746c776f820a440d72eaadd49ad158e10dc. --- diff --git a/man/homectl.xml b/man/homectl.xml index c6663e09e05..521d3412488 100644 --- a/man/homectl.xml +++ b/man/homectl.xml @@ -531,7 +531,7 @@ PATH PATH - Accept a file path. If set, the specifified file is used to overwrite the + Accept a file path. If set, the specified file is used to overwrite the corresponding file in the user's blob directory. If blank, the corresponding file is deleted from the blob directory. Essentially, these options are shortcuts to FILENAME=PATH diff --git a/src/home/homed-bus.c b/src/home/homed-bus.c index cbd84c231c7..bc6e8e37c5b 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);