* kern/main.c (grub_load_config): Fix copy-pasted comment.

Reported by: Seth Goldberg
This commit is contained in:
Vladimir 'phcoder' Serbinenko 2010-05-01 21:32:23 +02:00
parent f5f3ff9326
commit 3558c6e93c
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2010-05-01 Vladimir Serbinenko <phcoder@gmail.com>
* kern/main.c (grub_load_config): Fix copy-pasted comment.
Reported by: Seth Goldberg
2010-05-01 Vladimir Serbinenko <phcoder@gmail.com>
* commands/help.c (grub_cmd_help): Fix a typo.

View File

@ -102,7 +102,7 @@ grub_load_config (void)
auto int hook (struct grub_module_header *);
int hook (struct grub_module_header *header)
{
/* Not an ELF module, skip. */
/* Not an embedded config, skip. */
if (header->type != OBJ_TYPE_CONFIG)
return 0;