mirror of the now-defunct rocklinux.org
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.

28 lines
773 B

  1. diff -ru xcdroast-0.98alpha14-/src/io.c xcdroast-0.98alpha14/src/io.c
  2. --- xcdroast-0.98alpha14-/src/io.c 2003-05-29 15:14:42.000000000 +0200
  3. +++ xcdroast-0.98alpha14/src/io.c 2003-06-15 22:42:15.000000000 +0200
  4. @@ -5507,7 +5507,11 @@
  5. }
  6. /* build command line */
  7. - get_wrap_path_cdrecord(tmp3);
  8. + if (curset.isProDVD) {
  9. + get_wrap_path("CDRECORDPRODVD", tmp3);
  10. + } else {
  11. + get_wrap_path("CDRECORD", tmp3);
  12. + }
  13. g_snprintf(line,MAXLINE,"%s %s -atip 2>&1",
  14. tmp3,tmp);
  15. @@ -5518,6 +5522,11 @@
  16. g_error("popen error\n");
  17. }
  18. + /* syntax for dvd-atip is different */
  19. + if (is_dvdwriter(curset.writer_devnr)) {
  20. + found_atip = 1;
  21. + }
  22. +
  23. errcount = 0;
  24. for (;;) {
  25. if (fgets(line,MAXLINE,fpin) == NULL)