Skip to content

Commit 873cd03

Browse files
Merge branch 'release/1.9.6'
2 parents b947e8d + 3874738 commit 873cd03

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/org/cryptomator/cryptofs/common/FileSystemCapabilityChecker.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public enum Capability {
3737
LONG_FILENAMES,
3838

3939
/**
40-
* File system supports paths with ≥ 400 chars.
40+
* File system supports paths with ≥ 300 chars.
4141
* @since @since 1.9.2
4242
*/
4343
LONG_PATHS,
@@ -104,7 +104,7 @@ public void assertLongFilenameSupport(Path pathToVault) throws MissingCapability
104104

105105
public void assertLongFilePathSupport(Path pathToVault) throws MissingCapabilityException {
106106
String longFileName = Strings.repeat("a", 96) + ".c9r";
107-
String longPath = Joiner.on('/').join(longFileName, longFileName, longFileName, longFileName);
107+
String longPath = Joiner.on('/').join(longFileName, longFileName, longFileName);
108108
Path checkDir = pathToVault.resolve("c");
109109
Path p = checkDir.resolve(longPath);
110110
try {

0 commit comments

Comments
 (0)