diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2010-01-31 12:59:50 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2010-01-31 12:59:50 +0100 |
commit | 86291b620532968421d9ad46a5276e1e9761570c (patch) | |
tree | e24fe972bf60a4e575c39b0e5ca43bc36fe52b64 /vdr.c | |
parent | 08899602322175a6cb080951c2ad0dcbf71446fa (diff) | |
download | vdr-86291b620532968421d9ad46a5276e1e9761570c.tar.gz vdr-86291b620532968421d9ad46a5276e1e9761570c.tar.bz2 |
The files "commands.conf" and "reccmd.conf" can now contain nested lists of commands1.7.12
Diffstat (limited to 'vdr.c')
-rw-r--r-- | vdr.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -22,7 +22,7 @@ * * The project's page is at http://www.tvdr.de * - * $Id: vdr.c 2.15 2010/01/16 15:11:13 kls Exp $ + * $Id: vdr.c 2.16 2010/01/31 11:14:40 kls Exp $ */ #include <getopt.h> @@ -582,8 +582,8 @@ int main(int argc, char *argv[]) Diseqcs.Load(AddDirectory(ConfigDirectory, "diseqc.conf"), true, Setup.DiSEqC); Channels.Load(AddDirectory(ConfigDirectory, "channels.conf"), false, true); Timers.Load(AddDirectory(ConfigDirectory, "timers.conf")); - Commands.Load(AddDirectory(ConfigDirectory, "commands.conf"), true); - RecordingCommands.Load(AddDirectory(ConfigDirectory, "reccmds.conf"), true); + Commands.Load(AddDirectory(ConfigDirectory, "commands.conf")); + RecordingCommands.Load(AddDirectory(ConfigDirectory, "reccmds.conf")); SVDRPhosts.Load(AddDirectory(ConfigDirectory, "svdrphosts.conf"), true); Keys.Load(AddDirectory(ConfigDirectory, "remote.conf")); KeyMacros.Load(AddDirectory(ConfigDirectory, "keymacros.conf"), true); |