]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
home: fix typo
authorYu Watanabe <watanabe.yu+github@gmail.com>
Tue, 20 Feb 2024 00:24:24 +0000 (09:24 +0900)
committerYu Watanabe <watanabe.yu+github@gmail.com>
Tue, 20 Feb 2024 00:25:30 +0000 (09:25 +0900)
Follow-up for 25c89b89771adf3251b2398eaddc3a49c22752e3 and
a4d72746c776f820a440d72eaadd49ad158e10dc.

man/homectl.xml
src/home/homed-bus.c

index c6663e09e058a41636ea28a1ee040462189b3a29..521d34124881dc3311bfb9c0cc3c90cac8656006 100644 (file)
         <term><option>--avatar=</option><replaceable>PATH</replaceable></term>
         <term><option>--login-background=</option><replaceable>PATH</replaceable></term>
 
-        <listitem><para>Accept a file path. If set, the specifified file is used to overwrite the
+        <listitem><para>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
         <option>--blob=</option><replaceable>FILENAME</replaceable>=<replaceable>PATH</replaceable>
index cbd84c231c7ba86e78ba9f6fd6d1c4780089e5c9..bc6e8e37c5b5c3f58b54bfa7b5abc109ae743f9a 100644 (file)
@@ -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);