summaryrefslogtreecommitdiff
path: root/config.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2008-02-10 14:11:47 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2008-02-10 14:11:47 +0100
commit56f1b1b741f45feefd499c8f3a4343734d72debd (patch)
tree41d73b3fe1f8b5c9aa50937463f0f408941e030e /config.c
parente1eb84db4908465b44a5ed685c62912a694607a6 (diff)
downloadvdr-56f1b1b741f45feefd499c8f3a4343734d72debd.tar.gz
vdr-56f1b1b741f45feefd499c8f3a4343734d72debd.tar.bz2
Some code cleanup
Diffstat (limited to 'config.c')
-rw-r--r--config.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/config.c b/config.c
index 31365f80..1f5eb720 100644
--- a/config.c
+++ b/config.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: config.c 1.158 2007/11/25 13:46:27 kls Exp $
+ * $Id: config.c 1.159 2008/02/10 14:10:48 kls Exp $
*/
#include "config.h"
@@ -86,7 +86,7 @@ const char *cCommand::Execute(const char *Parameters)
return result;
}
-// -- cSVDRPhost -------------------------------------------------------------
+// --- cSVDRPhost ------------------------------------------------------------
cSVDRPhost::cSVDRPhost(void)
{
@@ -122,12 +122,12 @@ bool cSVDRPhost::Accepts(in_addr_t Address)
return (Address & mask) == (addr.s_addr & mask);
}
-// -- cCommands --------------------------------------------------------------
+// --- cCommands -------------------------------------------------------------
cCommands Commands;
cCommands RecordingCommands;
-// -- cSVDRPhosts ------------------------------------------------------------
+// --- cSVDRPhosts -----------------------------------------------------------
cSVDRPhosts SVDRPhosts;
@@ -142,7 +142,7 @@ bool cSVDRPhosts::Acceptable(in_addr_t Address)
return false;
}
-// -- cSetupLine -------------------------------------------------------------
+// --- cSetupLine ------------------------------------------------------------
cSetupLine::cSetupLine(void)
{
@@ -208,7 +208,7 @@ bool cSetupLine::Save(FILE *f)
return fprintf(f, "%s%s%s = %s\n", plugin ? plugin : "", plugin ? "." : "", name, value) > 0;
}
-// -- cSetup -----------------------------------------------------------------
+// --- cSetup ----------------------------------------------------------------
cSetup Setup;