fstyp.c (416ba5c74546f32a993436a99516d35008e9f384) | fstyp.c (69f172f27d18b8b1341d3fb2fa4cf3e945c3883a) |
---|---|
1/*- 2 * Copyright (c) 2014 The FreeBSD Foundation 3 * All rights reserved. 4 * 5 * This software was developed by Edward Tomasz Napierala under sponsorship 6 * from the FreeBSD Foundation. 7 * 8 * Redistribution and use in source and binary forms, with or without --- 49 unchanged lines hidden (view full) --- 58 bool unmountable; 59} fstypes[] = { 60 { "cd9660", &fstyp_cd9660, false }, 61 { "ext2fs", &fstyp_ext2fs, false }, 62 { "geli", &fstyp_geli, true }, 63 { "msdosfs", &fstyp_msdosfs, false }, 64 { "ntfs", &fstyp_ntfs, false }, 65 { "ufs", &fstyp_ufs, false }, | 1/*- 2 * Copyright (c) 2014 The FreeBSD Foundation 3 * All rights reserved. 4 * 5 * This software was developed by Edward Tomasz Napierala under sponsorship 6 * from the FreeBSD Foundation. 7 * 8 * Redistribution and use in source and binary forms, with or without --- 49 unchanged lines hidden (view full) --- 58 bool unmountable; 59} fstypes[] = { 60 { "cd9660", &fstyp_cd9660, false }, 61 { "ext2fs", &fstyp_ext2fs, false }, 62 { "geli", &fstyp_geli, true }, 63 { "msdosfs", &fstyp_msdosfs, false }, 64 { "ntfs", &fstyp_ntfs, false }, 65 { "ufs", &fstyp_ufs, false }, |
66#ifdef HAVE_CDDL | 66#ifdef HAVE_ZFS |
67 { "zfs", &fstyp_zfs, true }, 68#endif 69 { NULL, NULL, NULL } 70}; 71 72void * 73read_buf(FILE *fp, off_t off, size_t len) 74{ --- 162 unchanged lines hidden --- | 67 { "zfs", &fstyp_zfs, true }, 68#endif 69 { NULL, NULL, NULL } 70}; 71 72void * 73read_buf(FILE *fp, off_t off, size_t len) 74{ --- 162 unchanged lines hidden --- |