* grub-core/commands/search_wrap.c (options): Fix wrong copy-paste in

messages.
This commit is contained in:
Vladimir 'phcoder' Serbinenko 2012-03-06 11:59:39 +01:00
parent 97ebda9bc6
commit 4650daec9c
2 changed files with 9 additions and 4 deletions

View file

@ -1,4 +1,9 @@
2012-03-05 Vladimir Serbinenko <phcoder@gmail.com>
2012-03-06 Vladimir Serbinenko <phcoder@gmail.com>
* grub-core/commands/search_wrap.c (options): Fix wrong copy-paste in
messages.
2012-03-06 Vladimir Serbinenko <phcoder@gmail.com>
* util/grub-fstest.c (options): Remove OPTION_ARG_OPTIONAL from options
without argument.

View file

@ -47,7 +47,7 @@ static const struct grub_arg_option options[] =
"If HINT ends in comma, also try subpartitions"),
N_("HINT"), ARG_TYPE_STRING},
{"hint-bios", 0, GRUB_ARG_OPTION_REPEATABLE,
N_("First try the device HINT if on currently running BIOS. "
N_("First try the device HINT if currently running on BIOS. "
"If HINT ends in comma, also try subpartitions"),
N_("HINT"), ARG_TYPE_STRING},
{"hint-baremetal", 0, GRUB_ARG_OPTION_REPEATABLE,
@ -55,11 +55,11 @@ static const struct grub_arg_option options[] =
"If HINT ends in comma, also try subpartitions"),
N_("HINT"), ARG_TYPE_STRING},
{"hint-efi", 0, GRUB_ARG_OPTION_REPEATABLE,
N_("First try the device HINT if on currently running EFI. "
N_("First try the device HINT if currently running on EFI. "
"If HINT ends in comma, also try subpartitions"),
N_("HINT"), ARG_TYPE_STRING},
{"hint-arc", 0, GRUB_ARG_OPTION_REPEATABLE,
N_("First try the device HINT if on currently running ARC."
N_("First try the device HINT if currently running on ARC."
" If HINT ends in comma, also try subpartitions"),
N_("HINT"), ARG_TYPE_STRING},
{0, 0, 0, 0, 0, 0}