* 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:
Vladimir 'phcoder' Serbinenko 2012-01-31 22:20:37 +01:00
parent 10476bb0db
commit b3fe42adb7
2 changed files with 6 additions and 1 deletions

View file

@ -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>
* grub-core/fs/ext2.c (grub_ext2_label): Fix field size. Change to

View file

@ -2754,7 +2754,7 @@ get_filesystem_dnode (dnode_end_t * mosmdn, char *fsname,
break;
cname = fsname;
while (*fsname && !grub_isspace (*fsname) && *fsname != '/')
while (*fsname && *fsname != '/')
fsname++;
ch = *fsname;
*fsname = 0;