You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
783 B
20 lines
783 B
6 years ago
|
diff -up dvd+rw-tools-7.1/transport.hxx.debug dvd+rw-tools-7.1/transport.hxx
|
||
|
--- dvd+rw-tools-7.1/transport.hxx.debug 2012-03-07 10:55:07.167322839 +0100
|
||
|
+++ dvd+rw-tools-7.1/transport.hxx 2012-03-07 15:44:34.384202747 +0100
|
||
|
@@ -1795,9 +1795,12 @@ static int handle_events (Scsi_Command &
|
||
|
break;
|
||
|
case 5: ret |= 1<<5; break; // Multiple Initiators
|
||
|
case 6: // Device Busy
|
||
|
- if ((event[4]&0xF)==1 && // Timeout occured
|
||
|
- (event[5]&0x3)!=0)
|
||
|
- { poll(NULL,0,(descr&0xFFFF)*100+100);
|
||
|
+ if ((event[4]&0xF)==1) // Timeout occured
|
||
|
+ {
|
||
|
+ if ((event[5]&0x3)==0) // No Event
|
||
|
+ return 0; // Ready to accept any command
|
||
|
+
|
||
|
+ poll(NULL,0,(descr&0xFFFF)*100+100);
|
||
|
cmd[0] = 0; // TEST UNIT READY
|
||
|
cmd[5] = 0;
|
||
|
if ((err=cmd.transport()))
|