Revision: 1962
http://svn.sv.gnu.org/viewvc/?view=rev&root=grub&revision=1962
Author: proski
Date: 2009-01-28 02:19:07 +0000 (Wed, 28 Jan 2009)
Log Message:
-----------
2009-01-27 Pavel Roskin <[email protected]>
* disk/fs_uuid.c (search_fs_uuid): Ignore case of the UUID.
Modified Paths:
--------------
trunk/grub2/ChangeLog
trunk/grub2/disk/fs_uuid.c
Modified: trunk/grub2/ChangeLog
===================================================================
--- trunk/grub2/ChangeLog 2009-01-27 19:07:32 UTC (rev 1961)
+++ trunk/grub2/ChangeLog 2009-01-28 02:19:07 UTC (rev 1962)
@@ -1,3 +1,7 @@
+2009-01-27 Pavel Roskin <[email protected]>
+
+ * disk/fs_uuid.c (search_fs_uuid): Ignore case of the UUID.
+
2009-01-27 Vesa Jääskeläinen <[email protected]>
* commands/lsmmap.c: Add include to grub/machine/memory.h.
Modified: trunk/grub2/disk/fs_uuid.c
===================================================================
--- trunk/grub2/disk/fs_uuid.c 2009-01-27 19:07:32 UTC (rev 1961)
+++ trunk/grub2/disk/fs_uuid.c 2009-01-28 02:19:07 UTC (rev 1962)
@@ -52,7 +52,7 @@
{
(*count)++;
- if (grub_strcmp (uuid, key) == 0)
+ if (grub_strcasecmp (uuid, key) == 0)
{
ret = dev;
grub_free (uuid);