diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2004-08-20 09:21:12 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2004-08-20 09:21:12 +0000 |
commit | 21a9ece01504904aa17fd8bb6a673994e503def1 (patch) | |
tree | 379171d558993944b419db69cbac6ecdfcd33bb9 /multimedia/mmpython/files/patch-disc_lsdvd.py | |
parent | - Update to 0.4 (diff) |
- Update to 0.4.5
PR: ports/70581
Submitted by: Lewis Thompson <purple@lewiz.net> (maintainer)
Notes
Notes:
svn path=/head/; revision=116748
Diffstat (limited to 'multimedia/mmpython/files/patch-disc_lsdvd.py')
-rw-r--r-- | multimedia/mmpython/files/patch-disc_lsdvd.py | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/multimedia/mmpython/files/patch-disc_lsdvd.py b/multimedia/mmpython/files/patch-disc_lsdvd.py deleted file mode 100644 index e8071fbabebc..000000000000 --- a/multimedia/mmpython/files/patch-disc_lsdvd.py +++ /dev/null @@ -1,16 +0,0 @@ - -$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) # FreeBSD requires seeking to a 2048 multiple boundary. -+ buffer = f.read(50040) # Read 40 more to compensate for above seek. - - if buffer.find('UDF') == -1: - f.close() |