[iso] revert b184 ("relax ISO-9660 compliance")

* This was issue #90 and commit 261834e31f
* Unfortunately, the ArchLinux workaround breaks Windows XP installation
  so ArchLinux ISOs will have to fix their ISO9660 compliance themselves...
This commit is contained in:
Pete Batard 2013-01-09 22:45:45 +00:00
parent c4cb9d03c1
commit 0329404bf8
2 changed files with 7 additions and 8 deletions

View file

@ -450,9 +450,8 @@ iso9660_name_translate_ext(const char *psz_oldname, char *psz_newname,
if (!c)
break;
/* We're supposed to lower the case when Joliet extensions are not in use
* but some images fail if we do that. I'm looking at you Arch Linux!!! */
/* if (!i_joliet_level && isupper(c)) c = tolower(c); */
/* Lower case, unless we have Joliet extensions. */
if (!i_joliet_level && isupper(c)) c = tolower(c);
/* Drop trailing '.;1' (ISO 9660:1988 7.5.1 requires period) */
if (c == '.' && i == len - 3