* grub-core/fs/btrfs.c (find_device): Fix typos.

* grub-core/fs/zfs/zfs.c (read_device): Likewise.
	* util/grub-mkrelpath.c (argp_parser): Likewise.
	Reported by: Yuri Chornoivan.
This commit is contained in:
Vladimir 'phcoder' Serbinenko 2012-02-23 22:27:25 +01:00
parent 72f1d06552
commit fe42ce0924
4 changed files with 10 additions and 3 deletions

View File

@ -1,3 +1,10 @@
2012-02-23 Vladimir Serbinenko <phcoder@gmail.com>
* grub-core/fs/btrfs.c (find_device): Fix typos.
* grub-core/fs/zfs/zfs.c (read_device): Likewise.
* util/grub-mkrelpath.c (argp_parser): Likewise.
Reported by: Yuri Chornoivan.
2012-02-23 Dalet Omega <daletomega@gmail.com>
* grub-core/gfxmenu/gui_label.c (label_set_property): Add template

View File

@ -575,7 +575,7 @@ find_device (struct grub_btrfs_data *data, grub_uint64_t id, int do_rescan)
if (!dev_found)
{
grub_error (GRUB_ERR_BAD_FS,
N_("couldn't find a necesssary member device "
N_("couldn't find a necessary member device "
"of multi-device filesystem"));
return NULL;
}

View File

@ -1208,7 +1208,7 @@ read_device (grub_uint64_t offset, struct grub_zfs_device_desc *desc,
if (!desc->dev)
{
return grub_error (GRUB_ERR_BAD_FS,
N_("couldn't find a necesssary member device "
N_("couldn't find a necessary member device "
"of multi-device filesystem"));
}
/* read in a data block */

View File

@ -71,7 +71,7 @@ argp_parser (int key, char *arg, struct argp_state *state)
static struct argp argp = {
options, argp_parser, N_("PATH"),
N_("Transform a sytem filename into GRUB one."),
N_("Transform a system filename into GRUB one."),
NULL, NULL, NULL
};