]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
tree-wide: fix typo
authorYu Watanabe <watanabe.yu+github@gmail.com>
Wed, 10 Aug 2022 10:43:38 +0000 (19:43 +0900)
committerYu Watanabe <watanabe.yu+github@gmail.com>
Wed, 10 Aug 2022 10:43:38 +0000 (19:43 +0900)
NEWS
src/boot/efi/boot.c
src/boot/efi/stub.c
src/core/scope.c
src/network/networkd-sriov.c

diff --git a/NEWS b/NEWS
index 27e9029284bed7cf8c33c7e4220a913cbcac0470..f2747b6acab1a877cfdf06dbc14d67ff34be5ca0 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -127,7 +127,7 @@ CHANGES WITH 252 in spe:
         * The pkgconfig and rpm macros files now export the directory for user
           units as 'user_tmpfiles_dir' and '_user_tmpfilesdir'.
 
-        * Detection of Parallells and KubeVirt virtualization has been improved.
+        * Detection of Parallels and KubeVirt virtualization has been improved.
 
         * os-release gained a new field SUPPORT_END=YYYY-MM-DD to inform the
           user when their system will become unsupported.
index 87771c477dd6c669667247f28ad99a39bdbad8be..9c1d95e67256d43f1dcfb8e536dd54e32863e993 100644 (file)
@@ -2495,7 +2495,7 @@ static EFI_STATUS secure_boot_discover_keys(Config *config, EFI_FILE *root_dir)
                 config_add_entry(config, entry);
 
                 if (config->secure_boot_enroll == ENROLL_FORCE && strcaseeq16(dirent->FileName, u"auto"))
-                        /* if we auto enroll sucessfully this call does not return, if it fails we still
+                        /* if we auto enroll successfully this call does not return, if it fails we still
                          * want to add other potential entries to the menu */
                         secure_boot_enroll_at(root_dir, entry->path);
         }
index 49ece4196196a94160d1bf4d72fbf5ee34231e52..003ae8c99a0bc192bac180a50282093e4f98d7b0 100644 (file)
@@ -239,7 +239,7 @@ EFI_STATUS efi_main(EFI_HANDLE image, EFI_SYSTEM_TABLE *sys_table) {
         }
 
         /* if we are not in secure boot mode, or none was provided, accept a custom command line and replace
-         * the built-in one. We also do a superficial check whether first chararacter of passed command line
+         * the built-in one. We also do a superficial check whether first character of passed command line
          * is printable character (for compat with some Dell systems which fill in garbage?). */
         if ((!secure_boot_enabled() || cmdline_len == 0) &&
             loaded_image->LoadOptionsSize > 0 &&
index 4b1c5d303d17f894199c97ee836a13bdc24b9850..f807525d36840782e6b0b98ef52c6e824389bbde 100644 (file)
@@ -490,7 +490,7 @@ static int scope_start(Unit *u) {
         (void) unit_reset_accounting(u);
 
         /* We check only for User= option to keep behavior consistent with logic for service units,
-         * i.e. having 'Delegate=true Group=foo' w/o specifing User= has no effect. */
+         * i.e. having 'Delegate=true Group=foo' w/o specifying User= has no effect. */
         if (s->user && unit_cgroup_delegate(u))
                 return scope_enter_start_chown(s);
 
index 3d44c8fc82c9bd7787da6ef5c01897adb05b3667..5c270741bbd650d223dfbdbb7c4b6b00ee75c55e 100644 (file)
@@ -158,7 +158,7 @@ static int manager_update_sr_iov_ifindices(Manager *manager, int phys_port_ifind
         assert(phys_port_ifindex > 0);
         assert(virt_port_ifindex > 0);
 
-        /* This sets ifindices only whenn both interfaces are already managed by us. */
+        /* This sets ifindices only when both interfaces are already managed by us. */
 
         r = link_get_by_index(manager, phys_port_ifindex, &phys_link);
         if (r < 0)