Fixed bug with drive_scsi_dev_family= introduced by revision 796 (fcntl lock)

This commit is contained in:
Thomas Schmitt 2007-04-10 08:17:07 +00:00
parent 10a7a9d5e8
commit f617567e03
2 changed files with 2 additions and 2 deletions

View File

@ -1 +1 @@
#define Cdrskin_timestamP "2007.04.09.111215"
#define Cdrskin_timestamP "2007.04.10.081855"

View File

@ -134,7 +134,7 @@ void burn_preset_device_open(int exclusive, int blocking, int abort_on_busy)
return;
burn_sg_open_o_excl = exclusive & 3;
burn_sg_fcntl_f_setlk = !!(exclusive & 32);
burn_sg_use_family = (exclusive >> 2) & 15;
burn_sg_use_family = (exclusive >> 2) & 7;
burn_sg_open_o_nonblock = !blocking;
burn_sg_open_abort_busy = !!abort_on_busy;
}