* grub-core/kern/emu/hostdisk.c (read_device_map): Explicitly

delimit path in strings using quotes.
	* util/getroot.c (grub_guess_root_devices): Likewise.
	(grub_make_system_path_relative_to_its_root): Likewise.
	* util/grub-probe.c (probe): Likewise.
	* util/ieee1275/ofpath.c (find_obppath): Likewise.
	(xrealpath): Likewise.
This commit is contained in:
Vladimir 'phcoder' Serbinenko 2013-01-13 22:45:16 +01:00
parent 4a9950ecb0
commit 22099030ad
5 changed files with 16 additions and 6 deletions

View file

@ -1065,7 +1065,7 @@ grub_guess_root_devices (const char *dir)
{
*cur = canonicalize_file_name (tmp);
if (*cur == NULL)
grub_util_error (_("failed to get canonical path of %s"), tmp);
grub_util_error (_("failed to get canonical path of `%s'"), tmp);
free (tmp);
}
root = (strcmp (*cur, "/dev/root") == 0);
@ -2778,7 +2778,7 @@ grub_make_system_path_relative_to_its_root (const char *path)
/* canonicalize. */
p = canonicalize_file_name (path);
if (p == NULL)
grub_util_error (_("failed to get canonical path of %s"), path);
grub_util_error (_("failed to get canonical path of `%s'"), path);
/* For ZFS sub-pool filesystems, could be extended to others (btrfs?). */
#if !defined (__MINGW32__) && !defined (__CYGWIN__)