* grub-core/commands/menuentry.c (options): Remove
GRUB_ARG_OPTION_REPEATABLE. Reported by: Andreas Vogel
This commit is contained in:
parent
5ad1be828f
commit
90eeab76b0
2 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,9 @@
|
|||
2012-03-04 Vladimir Serbinenko <phcoder@gmail.com>
|
||||
|
||||
* grub-core/commands/menuentry.c (options): Remove
|
||||
GRUB_ARG_OPTION_REPEATABLE.
|
||||
Reported by: Andreas Vogel
|
||||
|
||||
2012-03-04 Andreas Vogel <Andreas.Vogel@anvo-it.de>
|
||||
|
||||
* grub-core/normal/main.c (grub_normal_free_menu): Fix memory leak.
|
||||
|
|
|
@ -36,8 +36,7 @@ static const struct grub_arg_option options[] =
|
|||
N_("Keyboard key to quickly boot this entry."), N_("KEYBOARD_KEY"), ARG_TYPE_STRING},
|
||||
{"source", 4, 0,
|
||||
N_("Use STRING as menu entry body."), N_("STRING"), ARG_TYPE_STRING},
|
||||
{"id", 1, GRUB_ARG_OPTION_REPEATABLE,
|
||||
N_("Menu entry identifier."), N_("STRING"), ARG_TYPE_STRING},
|
||||
{"id", 0, 0, N_("Menu entry identifier."), N_("STRING"), ARG_TYPE_STRING},
|
||||
{0, 0, 0, 0, 0, 0}
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue