From: Zbigniew Jędrzejewski-Szmek Date: Fri, 6 Feb 2026 14:24:43 +0000 (+0100) Subject: Fix wording in two places X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=25860000b6b33533d90ee47bab3685181e200431;p=thirdparty%2Fsystemd.git Fix wording in two places Noticed this while going through the stable series… Also update location after 97318131fd06a5bc35454da81dcbbc84f16d9940. --- diff --git a/docs/ARCHITECTURE.md b/docs/ARCHITECTURE.md index 17c95f4cecb..0df9ddea861 100644 --- a/docs/ARCHITECTURE.md +++ b/docs/ARCHITECTURE.md @@ -42,7 +42,7 @@ Thus code that is used by "higher-level" components (e.g. our binaries which are would go to a subdirectory specific to that component if it is only used there. If the code is to be shared between components, it'd go to `src/shared/`. Shared code that is used by multiple components that do not link to `libsystemd-shared-.so` may live either in `src/libsystemd/`, `src/basic/`, or `src/fundamental/`. -Any code that is used only for EFI goes under `src/boot/efi/`, and in `src/fundamental/` if it is shared with non-EFI components. +Code used only for EFI goes under `src/boot/`, and under `src/fundamental/` if it is shared with non-EFI components. To summarize: diff --git a/src/systemctl/systemctl-preset-all.c b/src/systemctl/systemctl-preset-all.c index bcc001fab77..f621d558956 100644 --- a/src/systemctl/systemctl-preset-all.c +++ b/src/systemctl/systemctl-preset-all.c @@ -26,7 +26,7 @@ int verb_preset_all(int argc, char *argv[], void *userdata) { CLEANUP_ARRAY(changes, n_changes, install_changes_free); r = unit_file_preset_all(arg_runtime_scope, unit_file_flags_from_args(), arg_root, arg_preset_mode, &changes, &n_changes); - /* We do not treat propagate failure of individual units here. */ + /* We do not propagate failure for individual units here. */ (void) install_changes_dump(r, "preset all", changes, n_changes, arg_quiet); if (r < 0) return r;