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:
parent
994b5e841d
commit
d72521b377
2 changed files with 5 additions and 1 deletions
|
@ -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.
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue