2010-09-09 Robert Millan <rmh@gnu.org>

* util/grub-probe.c (probe): Fix a pair of unhandled error
	conditions.
This commit is contained in:
Robert Millan 2010-09-09 01:16:05 +02:00
parent 4dfbc57428
commit 7bf45fdd31
2 changed files with 9 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2010-09-09 Robert Millan <rmh@gnu.org>
* util/grub-probe.c (probe): Fix a pair of unhandled error
conditions.
2010-09-09 Robert Millan <rmh@gnu.org>
Basic Btrfs support (detection and UUID).

View File

@ -234,7 +234,8 @@ probe (const char *path, char *device_name)
if (! fs->uuid)
grub_util_error ("%s does not support UUIDs", fs->name);
fs->uuid (dev, &uuid);
if (fs->uuid (dev, &uuid) != GRUB_ERR_NONE)
grub_util_error ("%s", grub_errmsg);
printf ("%s\n", uuid);
}
@ -244,7 +245,8 @@ probe (const char *path, char *device_name)
if (! fs->label)
grub_util_error ("%s does not support labels", fs->name);
fs->label (dev, &label);
if (fs->label (dev, &label) != GRUB_ERR_NONE)
grub_util_error ("%s", grub_errmsg);
printf ("%s\n", label);
}