* grub-core/fs/zfs/zfs.c (get_filesystem_dnode): Support space in
subvolume name (by removing a bogus and useless check).
This commit is contained in:
parent
10476bb0db
commit
b3fe42adb7
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2012-01-31 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
|
* grub-core/fs/zfs/zfs.c (get_filesystem_dnode): Support space in
|
||||||
|
subvolume name (by removing a bogus and useless check).
|
||||||
|
|
||||||
2012-01-31 Vladimir Serbinenko <phcoder@gmail.com>
|
2012-01-31 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
* grub-core/fs/ext2.c (grub_ext2_label): Fix field size. Change to
|
* grub-core/fs/ext2.c (grub_ext2_label): Fix field size. Change to
|
||||||
|
|
|
@ -2754,7 +2754,7 @@ get_filesystem_dnode (dnode_end_t * mosmdn, char *fsname,
|
||||||
break;
|
break;
|
||||||
|
|
||||||
cname = fsname;
|
cname = fsname;
|
||||||
while (*fsname && !grub_isspace (*fsname) && *fsname != '/')
|
while (*fsname && *fsname != '/')
|
||||||
fsname++;
|
fsname++;
|
||||||
ch = *fsname;
|
ch = *fsname;
|
||||||
*fsname = 0;
|
*fsname = 0;
|
||||||
|
|
Loading…
Reference in a new issue