diff options
Diffstat (limited to 'multimedia/mmpython/files/patch-disc_lsdvd.py')
-rw-r--r-- | multimedia/mmpython/files/patch-disc_lsdvd.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/multimedia/mmpython/files/patch-disc_lsdvd.py b/multimedia/mmpython/files/patch-disc_lsdvd.py new file mode 100644 index 000000000000..bc3a1e49d6ac --- /dev/null +++ b/multimedia/mmpython/files/patch-disc_lsdvd.py @@ -0,0 +1,16 @@ + +$FreeBSD$ + +--- disc/lsdvd.py.orig Thu Jun 10 20:55:34 2004 ++++ disc/lsdvd.py Thu Jun 10 20:58:14 2004 +@@ -173,8 +173,8 @@ + + # brute force reading of the device to find out if it is a DVD + f = open(device,'rb') +- f.seek(32808, 0) +- buffer = f.read(50000) ++ f.seek(32768, 0) ++ buffer = f.read(50040) + + if buffer.find('UDF') == -1: + f.close() |