From: Mike Yuan Date: Wed, 22 Jan 2025 13:47:57 +0000 (+0100) Subject: machine-id-setup: fix typo X-Git-Tag: v258-rc1~1529^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F36105%2Fhead;p=thirdparty%2Fsystemd.git machine-id-setup: fix typo --- diff --git a/src/shared/machine-id-setup.c b/src/shared/machine-id-setup.c index 19d841a9137..d444ea06e90 100644 --- a/src/shared/machine-id-setup.c +++ b/src/shared/machine-id-setup.c @@ -181,7 +181,7 @@ int machine_id_setup(const char *root, sd_id128_t machine_id, MachineIdSetupFlag fd = xopenat_full(inode_fd, /* path= */ NULL, O_RDWR|O_CLOEXEC, XO_REGULAR, 0444); if (fd < 0) { - log_debug_errno(fd, "Failed to topen '%s' in writable mode, retrying in read-only mode: %m", etc_machine_id); + log_debug_errno(fd, "Failed to open '%s' in writable mode, retrying in read-only mode: %m", etc_machine_id); /* If that didn't work, convert it into a readable file */ fd = xopenat_full(inode_fd, /* path= */ NULL, O_RDONLY|O_CLOEXEC, XO_REGULAR, MODE_INVALID);