]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
import,nspawn: fix a couple of typos in mountfsd
authorFrantisek Sumsal <frantisek@sumsal.cz>
Mon, 2 Mar 2026 19:58:09 +0000 (20:58 +0100)
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Mon, 2 Mar 2026 23:03:19 +0000 (00:03 +0100)
src/import/pull-oci.c
src/import/pull-tar.c
src/nspawn/nspawn.c

index e9e0a1c6b34193c28d37e4f5dc9bdd8353cffef4..cbbad44eb1e061adbd1dd6d90b1df0b208a6bb6d 100644 (file)
@@ -489,7 +489,7 @@ static int oci_pull_job_on_open_disk(PullJob *j) {
                                 DISSECT_IMAGE_FOREIGN_UID,
                                 &st->tree_fd);
                 if (r < 0)
-                        return log_error_errno(r, "Failed to mount directory via mountsd: %m");
+                        return log_error_errno(r, "Failed to mount directory via mountfsd: %m");
         } else {
                 if (i->flags & IMPORT_BTRFS_SUBVOL)
                         r = btrfs_subvol_make_fallback(AT_FDCWD, st->temp_path, 0755);
index bfc218b6bcbd0340448f2c356a60aee0d38bb9d2..f4a8bfca6227678e12117584c12065e039072801 100644 (file)
@@ -280,7 +280,7 @@ static int tar_pull_make_local_copy(TarPull *p) {
                         _cleanup_(sd_varlink_unrefp) sd_varlink *mountfsd_link = NULL;
                         r = mountfsd_connect(&mountfsd_link);
                         if (r < 0)
-                                return log_error_errno(r, "Failed to connect to mountsd: %m");
+                                return log_error_errno(r, "Failed to connect to mountfsd: %m");
 
                         /* Usually, tar_pull_job_on_open_disk_tar() would allocate ->tree_fd for us, but if
                          * already downloaded the image before, and are just making a copy of the original
index 722be8bbf7cb69b15ba3beb8103dbfc0b3046d64..fa92b0a8861ec28c80f8724fe663a1a8038aa419 100644 (file)
@@ -6212,7 +6212,7 @@ static int run(int argc, char *argv[]) {
 
                 r = mountfsd_connect(&mountfsd_link);
                 if (r < 0) {
-                        log_error_errno(r, "Failed to connect to mountsd: %m");
+                        log_error_errno(r, "Failed to connect to mountfsd: %m");
                         goto finish;
                 }