* grub-core/commands/menuentry.c (options): Remove

GRUB_ARG_OPTION_REPEATABLE.
	Reported by: Andreas Vogel
This commit is contained in:
Vladimir 'phcoder' Serbinenko 2012-03-05 01:00:09 +01:00
parent 5ad1be828f
commit 90eeab76b0
2 changed files with 7 additions and 2 deletions

View file

@ -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}
};