Author: greatlrd Date: Sun Jul 9 00:45:33 2006 New Revision: 22946
URL: http://svn.reactos.org/svn/reactos?rev=22946&view=rev Log: fixing last bug for jolite file names. now we can use so long file name we like. I was force fixing this bug for getting dejavu font to be install on livecd I was hopping some else have fixing this long standing bug.
Modified: trunk/reactos/tools/cdmake/cdmake.c
Modified: trunk/reactos/tools/cdmake/cdmake.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/tools/cdmake/cdmake.c?rev=2... ============================================================================== --- trunk/reactos/tools/cdmake/cdmake.c (original) +++ trunk/reactos/tools/cdmake/cdmake.c Sun Jul 9 00:45:33 2006 @@ -1077,12 +1077,19 @@ { if (d != &root) { - get_file_specifications(d->parent); - append_string_to_source(d->name); + get_file_specifications(d->parent); + if (d->joliet_name == NULL) + append_string_to_source(d->name); + else + append_string_to_source(d->joliet_name); + if (((d->flags & DIRECTORY_FLAG) == 0 || joliet) && d->extension[0] != 0) { - *end_source++ = '.'; - append_string_to_source(d->extension); + if (d->joliet_name == NULL) + { + *end_source++ = '.'; + append_string_to_source(d->extension); + } } if (d->flags & DIRECTORY_FLAG) *end_source++ = DIR_SEPARATOR_CHAR;