1
0
mirror of https://github.com/systemd/systemd synced 2024-07-09 04:26:06 +00:00

tree-wide: fix typo

This commit is contained in:
Yu Watanabe 2022-08-10 19:43:38 +09:00
parent 6a941db798
commit 5c19169fe9
5 changed files with 5 additions and 5 deletions

2
NEWS
View File

@ -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.

View 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);
}

View 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 &&

View 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);

View 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)