[Debburn-changes] r479 - in cdrkit/trunk: . wodim

Eduard Bloch blade at alioth.debian.org
Sat Nov 25 23:55:34 CET 2006


Author: blade
Date: 2006-11-25 23:55:34 +0100 (Sat, 25 Nov 2006)
New Revision: 479

Modified:
   cdrkit/trunk/Changelog
   cdrkit/trunk/wodim/drv_mmc.c
Log:
Enabled DVD driver auto-selection

Modified: cdrkit/trunk/Changelog
===================================================================
--- cdrkit/trunk/Changelog	2006-11-25 16:09:24 UTC (rev 478)
+++ cdrkit/trunk/Changelog	2006-11-25 22:55:34 UTC (rev 479)
@@ -1,8 +1,8 @@
-cdrkit (1.1.x) UNRELEASED; urgency=low
+cdrkit (1.1.x) UNRELEASED; urgency=medium
 
   [ Eduard Bloch ]
-  * replacement of libdeflt and config parser rewrite; more user-friendly,
-    flexibel, tolerant now
+  * replacement of libdeflt, config parser rewrite; more user-friendly,
+    more flexible/tolerant now
   * config overhaul, much more dynamic checks, including fixes for SunOS
     environment. Also fixed confusing double-checks for some of the variables
     in cdda2wav.c
@@ -12,6 +12,8 @@
   * cleanup of libschily, removed unused or easily replaceable parts (assumed
     having a modern POSIX compliant environment). Renamed to librols
     (RemainsOfLibSchily).
+  * reenabled selection of the DVD driver, accidentaly disabled in 1.0, when
+    beeing in non-verbose mode
 
   [ Christian Fromme ]
   * big cleanup, phase I, getting rid from Cstyle function definitions in

Modified: cdrkit/trunk/wodim/drv_mmc.c
===================================================================
--- cdrkit/trunk/wodim/drv_mmc.c	2006-11-25 16:09:24 UTC (rev 478)
+++ cdrkit/trunk/wodim/drv_mmc.c	2006-11-25 22:55:34 UTC (rev 479)
@@ -734,10 +734,10 @@
 		fprintf(stderr, "identify_dvd: is_dvd: %d\n", is_dvd);
 #endif
 	}
-	if (is_dvd && lverbose>2) {
- 	        errmsgno(EX_BAD, 
-                 "Found DVD media: using cdr_mdvd.\n");  
-                 dp = &cdr_mdvd; 
+	if (is_dvd) {
+     if(lverbose>2) 
+        fprintf(stderr, "Found DVD media: using cdr_mdvd.\n");  
+     dp = &cdr_mdvd; 
 	}
 	dp->profile = profile;
 	dp->is_dvd = is_dvd;




More information about the Debburn-changes mailing list