]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
2009-01-27 Pavel Roskin <proski@gnu.org>
authorproski <proski@localhost>
Wed, 28 Jan 2009 02:19:07 +0000 (02:19 +0000)
committerproski <proski@localhost>
Wed, 28 Jan 2009 02:19:07 +0000 (02:19 +0000)
* disk/fs_uuid.c (search_fs_uuid): Ignore case of the UUID.

ChangeLog
disk/fs_uuid.c

index d995fbdb41db5ede59e149ea03e7b0cf5250cfed..06ba821d2c482c515328da870378323424c9272c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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.
index 27dffc2f6fb32a2779b571501d19b7b4bcd56594..125d29b21c14199e99b6154d9c94455b66c7204d 100644 (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);