Bug fix: ECMA-119 directory names were truncated to 8 characters if

lowercase characters or full ASCII are allowed.
This commit is contained in:
Thomas Schmitt 2010-12-24 20:31:24 +01:00
parent 2649045dfe
commit 362b15f4d5
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@ needs_transl:;
}
} else {
if (relaxed) {
isoname = iso_r_dirid(ascii_name, 8, relaxed);
isoname = iso_r_dirid(ascii_name, 31, relaxed);
} else {
isoname = iso_2_dirid(ascii_name);
}