2009-01-27 Pavel Roskin <proski@gnu.org>

* disk/fs_uuid.c (search_fs_uuid): Ignore case of the UUID.
This commit is contained in:
proski 2009-01-28 02:19:07 +00:00
parent 994b5e841d
commit d72521b377
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2009-01-27 Pavel Roskin <proski@gnu.org>
* disk/fs_uuid.c (search_fs_uuid): Ignore case of the UUID.
2009-01-27 Vesa Jääskeläinen <chaac@nic.fi>
* commands/lsmmap.c: Add include to grub/machine/memory.h.

View File

@ -52,7 +52,7 @@ search_fs_uuid (const char *key, unsigned long *count)
{
(*count)++;
if (grub_strcmp (uuid, key) == 0)
if (grub_strcasecmp (uuid, key) == 0)
{
ret = dev;
grub_free (uuid);