VeraCrypt
aboutsummaryrefslogtreecommitdiff
path: root/src/Volume
diff options
context:
space:
mode:
authorMounir IDRASSI <mounir.idrassi@idrix.fr>2014-10-24 08:37:03 +0200
committerMounir IDRASSI <mounir.idrassi@idrix.fr>2014-11-08 23:24:06 +0100
commit067394d110ad712963f895cf63ae4a12ca4c0df1 (patch)
tree1b41ac081160d458feae77e0e9e4051899bf0f69 /src/Volume
parentf05f6a00a6b0f150b0a0b51cd7b44b9c9193e3de (diff)
downloadVeraCrypt-067394d110ad712963f895cf63ae4a12ca4c0df1.tar.gz
VeraCrypt-067394d110ad712963f895cf63ae4a12ca4c0df1.zip
MacOSX : Support hard drives with a large sector size ( > 512).
Diffstat (limited to 'src/Volume')
-rw-r--r--src/Volume/VolumeHeader.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Volume/VolumeHeader.cpp b/src/Volume/VolumeHeader.cpp
index bee60af7..e7a47d29 100644
--- a/src/Volume/VolumeHeader.cpp
+++ b/src/Volume/VolumeHeader.cpp
@@ -184,7 +184,7 @@ namespace VeraCrypt
throw ParameterIncorrect (SRC_POS);
}
-#if !(defined (TC_WINDOWS) || defined (TC_LINUX))
+#if !(defined (TC_WINDOWS) || defined (TC_LINUX) || defined (TC_MACOSX))
if (SectorSize != TC_SECTOR_SIZE_LEGACY)
throw UnsupportedSectorSize (SRC_POS);
#endif