]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
Fix wording in two places
authorZbigniew Jędrzejewski-Szmek <zbyszek@amutable.com>
Fri, 6 Feb 2026 14:24:43 +0000 (15:24 +0100)
committerZbigniew Jędrzejewski-Szmek <zbyszek@amutable.com>
Mon, 9 Feb 2026 10:01:15 +0000 (11:01 +0100)
Noticed this while going through the stable series…
Also update location after 97318131fd06a5bc35454da81dcbbc84f16d9940.

docs/ARCHITECTURE.md
src/systemctl/systemctl-preset-all.c

index 17c95f4cecb2bf2af488c52d6c87a16821a5f06e..0df9ddea86195403dd15394f0ec5241cd4866203 100644 (file)
@@ -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-<nnn>.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:
 
index bcc001fab77632cb595038d42a1978e4ad41bf3c..f621d55895614406f141144d212ab856beb6e636 100644 (file)
@@ -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;