Removed a bug with SCSI address of scanned drives without such address

This commit is contained in:
2006-09-23 13:26:42 +00:00
parent f54345ff82
commit b44553733d
3 changed files with 10 additions and 4 deletions

View File

@ -2757,9 +2757,12 @@ int Cdrskin_driveno_to_btldev(struct CdrskiN *skin, int driveno,
{ret= 2; goto adr_translation;}
}
fallback:;
if(skin->preskin->no_pseudo_scsi_adr)
sprintf(btldev,"%d",driveno);
else
if(skin->preskin->no_pseudo_scsi_adr) {
if(loc!=NULL)
strcpy(btldev,loc);
else
sprintf(btldev,"%d",driveno);
} else
sprintf(btldev,"0,%d,0",driveno);
ret= 0;

View File

@ -1 +1 @@
#define Cdrskin_timestamP "2006.09.23.114858"
#define Cdrskin_timestamP "2006.09.23.132755"