Module Name:    src
Committed By:   tsutsui
Date:           Mon Jun  3 15:55:05 UTC 2024

Modified Files:
        src/external/gpl2/mkhybrid/dist: write.c

Log Message:
Don't print progress if -quiet is specfied as cdrtools-2.01 and later.


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/external/gpl2/mkhybrid/dist/write.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/external/gpl2/mkhybrid/dist/write.c
diff -u src/external/gpl2/mkhybrid/dist/write.c:1.1 src/external/gpl2/mkhybrid/dist/write.c:1.2
--- src/external/gpl2/mkhybrid/dist/write.c:1.1	Fri May 31 19:49:02 2024
+++ src/external/gpl2/mkhybrid/dist/write.c	Mon Jun  3 15:55:05 2024
@@ -280,7 +280,8 @@ static void FDECL3(write_one_file, char 
 	       fprintf(stderr,"%d..", last_extent_written);
 	  }
 #else
-	  if((last_extent_written % 5000) < use/SECTOR_SIZE)
+	  if(verbose > 0 &&
+	     (last_extent_written % 5000) < use/SECTOR_SIZE)
 	  {
 	       time_t now;
 	       time_t the_end;

Reply via email to