summaryrefslogtreecommitdiff
path: root/usr.sbin/efibootmgr
diff options
context:
space:
mode:
authorWarner Losh <imp@FreeBSD.org>2017-12-09 06:57:19 +0000
committerWarner Losh <imp@FreeBSD.org>2017-12-09 06:57:19 +0000
commita3e6c4a6fc887445171a5b44a9f292f124150fe7 (patch)
tree55181c5797eda52a9e60bc8934452258d6b00f49 /usr.sbin/efibootmgr
parent1285bcc833a371258a05a38fec001c3538efd236 (diff)
downloadsrc-test2-a3e6c4a6fc887445171a5b44a9f292f124150fe7.tar.gz
src-test2-a3e6c4a6fc887445171a5b44a9f292f124150fe7.zip
Notes
Diffstat (limited to 'usr.sbin/efibootmgr')
-rw-r--r--usr.sbin/efibootmgr/efibootmgr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/efibootmgr/efibootmgr.c b/usr.sbin/efibootmgr/efibootmgr.c
index 85062ebc01ab..1989d861fc8c 100644
--- a/usr.sbin/efibootmgr/efibootmgr.c
+++ b/usr.sbin/efibootmgr/efibootmgr.c
@@ -314,7 +314,7 @@ read_vars(void)
LIST_INIT(&efivars);
while ((ret = efi_get_next_variable_name(&guid, &next_name)) > 0) {
/*
- * Only pay attention to the EFI:BootXXXX variables to get the list.
+ * Only pay attention to EFI:BootXXXX variables to get the list.
*/
if (efi_guid_cmp(guid, &EFI_GLOBAL_GUID) != 0 ||
strlen(next_name) != 8 ||