From caaf95985f5c25d47b6aa5b18867ce20524613bf Mon Sep 17 00:00:00 2001 From: Yu Watanabe Date: Mon, 8 Apr 2024 09:22:03 +0900 Subject: [PATCH] mountfsd: fix typo Follow-up for 702a52f4b5d49cce11e2adbc740deb3b644e2de0. --- src/mountfsd/mountwork.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/mountfsd/mountwork.c b/src/mountfsd/mountwork.c index f5985962151..f0b22ba65ca 100644 --- a/src/mountfsd/mountwork.c +++ b/src/mountfsd/mountwork.c @@ -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;