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

Fix path generation for sub-filesystems in ZFS.
	
	* kern/emu/misc.c (grub_make_system_path_relative_to_its_root): Add
	missing slash.
This commit is contained in:
Robert Millan 2010-08-09 00:11:19 +02:00
parent 7117542069
commit 346c207240
2 changed files with 8 additions and 1 deletions

View file

@ -1,3 +1,10 @@
2010-08-08 Robert Millan <rmh@gnu.org>
Fix path generation for sub-filesystems in ZFS.
* kern/emu/misc.c (grub_make_system_path_relative_to_its_root): Add
missing slash.
2010-08-08 Robert Millan <rmh@gnu.org>
* util/grub-fstest.c (read_file, cmd_cmp): Improve error message.

View file

@ -403,7 +403,7 @@ grub_make_system_path_relative_to_its_root (const char *path)
if (poolfs)
{
ret = xasprintf ("/%s@%s", poolfs, buf3);
ret = xasprintf ("/%s/@%s", poolfs, buf3);
free (buf3);
}
else