fstyp.c (ec80d2eeddab0c40000c969b62d8281dae27e0c1) fstyp.c (50c59bbb53f353cc63cedf3d8bedd1cefe885125)
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

--- 52 unchanged lines hidden (view full) ---

61 fstyp_function function;
62 bool unmountable;
63 char *precache_encoding;
64} fstypes[] = {
65 { "cd9660", &fstyp_cd9660, false, NULL },
66 { "exfat", &fstyp_exfat, false, EXFAT_ENC },
67 { "ext2fs", &fstyp_ext2fs, false, NULL },
68 { "geli", &fstyp_geli, true, NULL },
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

--- 52 unchanged lines hidden (view full) ---

61 fstyp_function function;
62 bool unmountable;
63 char *precache_encoding;
64} fstypes[] = {
65 { "cd9660", &fstyp_cd9660, false, NULL },
66 { "exfat", &fstyp_exfat, false, EXFAT_ENC },
67 { "ext2fs", &fstyp_ext2fs, false, NULL },
68 { "geli", &fstyp_geli, true, NULL },
69 { "hfs+", &fstyp_hfsp, false, NULL },
69 { "msdosfs", &fstyp_msdosfs, false, NULL },
70 { "ntfs", &fstyp_ntfs, false, NTFS_ENC },
71 { "ufs", &fstyp_ufs, false, NULL },
72#ifdef HAVE_ZFS
73 { "zfs", &fstyp_zfs, true, NULL },
74#endif
75 { NULL, NULL, NULL, NULL }
76};

--- 185 unchanged lines hidden ---
70 { "msdosfs", &fstyp_msdosfs, false, NULL },
71 { "ntfs", &fstyp_ntfs, false, NTFS_ENC },
72 { "ufs", &fstyp_ufs, false, NULL },
73#ifdef HAVE_ZFS
74 { "zfs", &fstyp_zfs, true, NULL },
75#endif
76 { NULL, NULL, NULL, NULL }
77};

--- 185 unchanged lines hidden ---