]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
mountfsd: fix typo
authorYu Watanabe <watanabe.yu+github@gmail.com>
Mon, 8 Apr 2024 00:22:03 +0000 (09:22 +0900)
committerYu Watanabe <watanabe.yu+github@gmail.com>
Mon, 8 Apr 2024 00:22:06 +0000 (09:22 +0900)
Follow-up for 702a52f4b5d49cce11e2adbc740deb3b644e2de0.

src/mountfsd/mountwork.c

index f59859621518bcc657fed8f10e1ca174aebf7884..f0b22ba65ca2336f8edf6a8c01af6a1da1e3e2a2 100644 (file)
@@ -349,8 +349,8 @@ static int vl_method_mount_image(
         if (r <= 0)
                 return r;
 
-        /* Generate the commmon dissection directory here. We are not going to use it, but the clients might,
-         * and they likely are unprivileged, hence cannot create it themselves. Hence let's jsut create it
+        /* Generate the common dissection directory here. We are not going to use it, but the clients might,
+         * and they likely are unprivileged, hence cannot create it themselves. Hence let's just create it
          * here, if it is missing. */
         r = get_common_dissect_directory(NULL);
         if (r < 0)
@@ -544,7 +544,7 @@ static int vl_method_mount_image(
 }
 
 static int process_connection(VarlinkServer *server, int _fd) {
-        _cleanup_close_ int fd = TAKE_FD(_fd); /* always take possesion */
+        _cleanup_close_ int fd = TAKE_FD(_fd); /* always take possession */
         _cleanup_(varlink_close_unrefp) Varlink *vl = NULL;
         _cleanup_(sd_event_unrefp) sd_event *event = NULL;
         int r;