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:
parent
7117542069
commit
346c207240
2 changed files with 8 additions and 1 deletions
|
@ -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.
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue