Added LG drive sense code 2 06 00 to error list (officially listed is 3 06 00)

This commit is contained in:
Thomas Schmitt 2012-02-13 10:28:26 +00:00
parent 1b15b71905
commit 40db9f1d81
2 changed files with 7 additions and 1 deletions

View File

@ -1 +1 @@
#define Cdrskin_timestamP "2012.02.11.171228"
#define Cdrskin_timestamP "2012.02.13.102837"

View File

@ -1090,6 +1090,12 @@ enum response scsi_error_msg(struct burn_drive *d, unsigned char *sense,
else
sprintf(msg, "Logical unit is not ready");
goto return_retry;
case 0x06:
if (*ascq == 0)
sprintf(msg, "No reference position found");
else
break;
goto return_fail;
case 0x08:
if (*ascq == 0)
sprintf(msg, "Logical unit communication failure");