Mailing List archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[vdr] [SOLVED] vdr-dvdselect-0.7a not writing to setup.conf



C.Y.M wrote:
After testing out vdr-dvdselect-0.7a, I noticed that the DVDOutputDir is not being written to vdr's setup.conf. All the other dvdselect configuration options were written to setup.conf except that I had to manually enter:

dvdselect.DVDOutputDir = /home/video/rip



OK, it looks like I solved it..

--- dvdselect/config.c.orig       2005-01-05 01:46:13.000000000 -0800
+++ dvdselect/config.c    2005-01-05 01:48:15.000000000 -0800
@@ -84,9 +84,10 @@
 void cMenuSetupDVDSelect::Store(void)
 {
   DVDSelectSetup = data;
-  SetupStore( "NameDevice", data.NameDevice);
-  SetupStore( "NameOrgDevice", data.NameOrgDevice);
-  SetupStore( "ImageDir",   data.ImageDir );
-  SetupStore( "DVDReadScript",   data.DVDReadScript );
-  SetupStore( "DVDWriteScript",   data.DVDWriteScript );
+  SetupStore( "NameDevice", data.NameDevice );
+  SetupStore( "NameOrgDevice", data.NameOrgDevice );
+  SetupStore( "ImageDir", data.ImageDir );
+  SetupStore( "DVDOutputDir", data.DVDOutputDir );
+  SetupStore( "DVDReadScript", data.DVDReadScript );
+  SetupStore( "DVDWriteScript", data.DVDWriteScript );
 }




Home | Main Index | Thread Index