Check ZFS filesystem when detected

This commit is contained in:
Christophe Grenier 2013-05-17 16:48:10 +02:00
parent 34c5f93357
commit 0d050098dc

View file

@ -425,7 +425,8 @@ int check_linux(disk_t *disk, partition_t *partition, const int verbose)
check_xfs(disk, partition, verbose)==0 ||
check_LUKS(disk, partition)==0 ||
check_btrfs(disk, partition)==0 ||
check_gfs2(disk, partition)==0)
check_gfs2(disk, partition)==0 ||
check_ZFS(disk, partition)==0)
return 0;
return 1;
}