1
0
mirror of https://github.com/systemd/systemd synced 2024-07-01 07:34:28 +00:00

mountfsd: fix typo

Follow-up for 702a52f4b5.
This commit is contained in:
Yu Watanabe 2024-04-08 09:22:03 +09:00
parent 1ea9151e6c
commit caaf95985f

View 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;