Added a few ASCQ texts to error code 5,30,X

This commit is contained in:
Thomas Schmitt 2016-09-10 08:30:36 +00:00
parent 814f4b5a5e
commit 97df45f7ab
2 changed files with 11 additions and 1 deletions

View File

@ -1 +1 @@
#define Cdrskin_timestamP "2016.07.31.190417"
#define Cdrskin_timestamP "2016.09.10.083123"

View File

@ -1459,6 +1459,16 @@ enum response scsi_error_msg(struct burn_drive *d, unsigned char *sense,
"Cannot format medium, incompatible medium");
else if (*ascq == 7)
sprintf(msg, "Cleaning failure");
else if (*ascq == 8)
sprintf(msg,
"Cannot write, application code mismatch");
else if (*ascq == 9)
sprintf(msg, "Current session not fixated for append");
else if (*ascq == 10)
sprintf(msg, "Medium not formatted");
else if (*ascq == 11)
sprintf(msg,
"Cannot write medium, unsupported medium version");
else
break;
goto return_fail;