mirror of
https://github.com/pbatard/rufus.git
synced 2025-06-02 23:59:53 -04:00
[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:
parent
c4cb9d03c1
commit
0329404bf8
2 changed files with 7 additions and 8 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue