Commit 9e307517 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Accept mdf and dvd as extension for DVD iso

Stupid software actually uses that...
parent 0268197b
......@@ -1467,7 +1467,8 @@ static int ProbeDVD( const char *psz_name )
if( ext == NULL )
goto bailout;
ext++;
if( strcasecmp( ext, "iso" ) && strcasecmp( ext, "img" ) )
if( strcasecmp( ext, "iso" ) && strcasecmp( ext, "img" ) &&
strcasecmp( ext, "mdf" ) && strcasecmp( ext, "dvd" ) )
goto bailout;
/* Try to find the anchor (2 bytes at LBA 256) */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment