aboutsummaryrefslogtreecommitdiffstats
path: root/sysutils/cdrtools
diff options
context:
space:
mode:
authorjoerg <joerg@FreeBSD.org>2001-09-20 17:59:50 +0800
committerjoerg <joerg@FreeBSD.org>2001-09-20 17:59:50 +0800
commitb3a5146de0c50e57c2ecd171b280de78206cc9a3 (patch)
treece1c177e5489c094f2be16544bc6ae4c3c6a6c4f /sysutils/cdrtools
parent56268a7c4e72d1164f6dec8a4e67f0262438a357 (diff)
downloadfreebsd-ports-gnome-b3a5146de0c50e57c2ecd171b280de78206cc9a3.tar.gz
freebsd-ports-gnome-b3a5146de0c50e57c2ecd171b280de78206cc9a3.tar.zst
freebsd-ports-gnome-b3a5146de0c50e57c2ecd171b280de78206cc9a3.zip
Resurrect those parts of the original patch-ai that Joerg Schilling
did not integrate into the main source code. Otherwise, the old Plasmon 4100 CD-R still wouldn't work. OK by: dirk
Diffstat (limited to 'sysutils/cdrtools')
-rw-r--r--sysutils/cdrtools/files/patch-ai20
1 files changed, 20 insertions, 0 deletions
diff --git a/sysutils/cdrtools/files/patch-ai b/sysutils/cdrtools/files/patch-ai
new file mode 100644
index 000000000000..86abda3cc0fe
--- /dev/null
+++ b/sysutils/cdrtools/files/patch-ai
@@ -0,0 +1,20 @@
+--- cdrecord/drv_philips.c.orig Tue Feb 20 23:56:44 2001
++++ cdrecord/drv_philips.c Tue Sep 18 17:42:51 2001
+@@ -505,12 +505,15 @@
+ * READ BUFFER SCSI cmd which is meant to be used for
+ * something totally else, and which would only jam the
+ * Plasmon due to the incorrect parameters used.
++ *
++ * We need to return some !0 value, otherwise the upper
++ * layer would still issue a READ BUFFER, sigh.
+ */
+
+ if (sp)
+- *sp = 0L;
++ *sp = 1L * 1024 * 1024;
+ if (fp)
+- *fp = 0L;
++ *fp = 1L * 1024 * 1024;
+
+ return (100); /* 100 % */
+ }