From 54e2be26307d89082142278c45f9a857ce9b2044 Mon Sep 17 00:00:00 2001 From: Vladimir 'phcoder' Serbinenko Date: Fri, 3 Feb 2012 11:48:42 +0100 Subject: [PATCH] * grub-core/disk/ldm.c (grub_util_ldm_embed): Correct error message. --- ChangeLog | 4 ++++ grub-core/disk/ldm.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 931b0c3e0..a002348bb 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2012-02-03 Vladimir Serbinenko + + * grub-core/disk/ldm.c (grub_util_ldm_embed): Correct error message. + 2012-02-03 Vladimir Serbinenko * grub-core/commands/search_file.c (SEARCH_TARGET): Remove obsolete diff --git a/grub-core/disk/ldm.c b/grub-core/disk/ldm.c index 08568e9d5..7a18b5e84 100644 --- a/grub-core/disk/ldm.c +++ b/grub-core/disk/ldm.c @@ -917,7 +917,7 @@ grub_util_ldm_embed (struct grub_disk *disk, unsigned int *nsectors, if (embed_type != GRUB_EMBED_PCBIOS) return grub_error (GRUB_ERR_NOT_IMPLEMENTED_YET, - "GPT curently supports only PC-BIOS embedding"); + "LDM curently supports only PC-BIOS embedding"); if (disk->partition) return grub_error (GRUB_ERR_FILE_NOT_FOUND, "disk isn't LDM"); pv = grub_diskfilter_get_pv_from_disk (disk, &vg);