commit-grub
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[1962] 2009-01-27 Pavel Roskin <address@hidden>


From: Pavel Roskin
Subject: [1962] 2009-01-27 Pavel Roskin <address@hidden>
Date: Wed, 28 Jan 2009 02:19:08 +0000

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  <address@hidden>

        * 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  <address@hidden>
+
+       * disk/fs_uuid.c (search_fs_uuid): Ignore case of the UUID.
+
 2009-01-27  Vesa Jääskeläinen  <address@hidden>
 
        * 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);






reply via email to

[Prev in Thread] Current Thread [Next in Thread]