OpenSDE Packages Database (without history before r20070)
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.

27 lines
1.2 KiB

  1. http://bugzilla.gnome.org/show_bug.cgi?id=462238
  2. diff -ru brasero-0.6.1.orig/src/scsi/scsi-command.c brasero-0.6.1/src/scsi/scsi-command.c
  3. --- brasero-0.6.1.orig/src/scsi/scsi-command.c 2007-08-25 15:16:23.000000000 +0200
  4. +++ brasero-0.6.1/src/scsi/scsi-command.c 2007-09-07 11:49:05.000000000 +0200
  5. @@ -85,7 +85,7 @@
  6. memset (transport, 0, sizeof (struct sg_io_hdr));
  7. transport->interface_id = 'S'; /* mandatory */
  8. -// transport->flags = SG_FLAG_LUN_INHIBIT|SG_FLAG_DIRECT_IO;
  9. +// transport->flags = SG_FLAG_UNUSED_LUN_INHIBIT|SG_FLAG_DIRECT_IO;
  10. transport->cmdp = cmd->cmd;
  11. transport->cmd_len = cmd->info->size;
  12. transport->dxferp = buffer;
  13. diff -ru brasero-0.6.1.orig/src/scsi/scsi-sg.c brasero-0.6.1/src/scsi/scsi-sg.c
  14. --- brasero-0.6.1.orig/src/scsi/scsi-sg.c 2007-08-25 15:16:23.000000000 +0200
  15. +++ brasero-0.6.1/src/scsi/scsi-sg.c 2007-09-07 11:49:32.000000000 +0200
  16. @@ -44,7 +44,7 @@
  17. memset (&sense_buffer, 0, sizeof (sense_buffer));
  18. command->interface_id = 'S'; /* mandatory */
  19. - command->flags = SG_FLAG_LUN_INHIBIT|SG_FLAG_DIRECT_IO;
  20. + command->flags = SG_FLAG_UNUSED_LUN_INHIBIT|SG_FLAG_DIRECT_IO;
  21. /* where to output the scsi sense buffer */
  22. command->sbp = sense_buffer;