From 362b15f4d51382f49d4d0e1f75ec3cd4902ad076 Mon Sep 17 00:00:00 2001 From: Thomas Schmitt Date: Fri, 24 Dec 2010 20:31:24 +0100 Subject: [PATCH] Bug fix: ECMA-119 directory names were truncated to 8 characters if lowercase characters or full ASCII are allowed. --- libisofs/ecma119_tree.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libisofs/ecma119_tree.c b/libisofs/ecma119_tree.c index 7d3cca5..4fc7fb2 100644 --- a/libisofs/ecma119_tree.c +++ b/libisofs/ecma119_tree.c @@ -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); }