svn commit: r326726 - head/usr.sbin/efibootmgr

Warner Losh imp at FreeBSD.org
Sat Dec 9 06:57:21 UTC 2017


Author: imp
Date: Sat Dec  9 06:57:19 2017
New Revision: 326726
URL: https://svnweb.freebsd.org/changeset/base/326726

Log:
  Forgotten in 326725
  
  Release Notes: Yes

Modified:
  head/usr.sbin/efibootmgr/efibootmgr.c

Modified: head/usr.sbin/efibootmgr/efibootmgr.c
==============================================================================
--- head/usr.sbin/efibootmgr/efibootmgr.c	Sat Dec  9 06:52:20 2017	(r326725)
+++ head/usr.sbin/efibootmgr/efibootmgr.c	Sat Dec  9 06:57:19 2017	(r326726)
@@ -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 ||


More information about the svn-src-head mailing list