~ubuntu-branches/ubuntu/precise/libisoburn/precise

« back to all changes in this revision

Viewing changes to libisoburn/isofs_wrap.c

  • Committer: Package Import Robot
  • Author(s): George Danchev
  • Date: 2011-10-02 09:37:34 UTC
  • mfrom: (9.1.17 sid)
  • Revision ID: package-import@ubuntu.com-20111002093734-auibchjeaecfhofu
Tags: 1.1.6-2
Fix funny typo in xorriso binary package description.
Thanks to Davide Prina (Closes: #643993).

Show diffs side-by-side

added added

removed removed

Lines of Context:
564
564
   isoburn_set_start_byte(o, size, 0);
565
565
   if(!(flag & 1))
566
566
     o->fabricated_disc_status= BURN_DISC_APPENDABLE;
567
 
 } else if (!strncmp((char*)pvm->std_identifier, "CDXX1", 5)) {
 
567
 } else if (strncmp((char*)pvm->std_identifier, "CDXX1", 5) == 0 ||
 
568
            (strncmp((char*)pvm->std_identifier, "CDxx1", 5) == 0 &&
 
569
             pvm->vol_desc_type[0] == 'x')) {
568
570
 
569
571
   /* empty image */
570
572
   isoburn_set_start_byte(o, o->zero_nwa * 2048, 0);