summaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2002-05-13 16:35:49 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2002-05-13 16:35:49 +0200
commitd4893ad1fed2e2b157c404d610db779138c4c461 (patch)
tree50d97120ec3a806cf2bcc74cd6385c750eb15d77 /config.h
parent49fcbf19fa2a179d06990443349575ffa86a697f (diff)
downloadvdr-d4893ad1fed2e2b157c404d610db779138c4c461.tar.gz
vdr-d4893ad1fed2e2b157c404d610db779138c4c461.tar.bz2
Improved the [eid]syslog() macros
Diffstat (limited to 'config.h')
-rw-r--r--config.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/config.h b/config.h
index 518c3f53..cb21745d 100644
--- a/config.h
+++ b/config.h
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: config.h 1.115 2002/05/12 09:18:44 kls Exp $
+ * $Id: config.h 1.116 2002/05/13 16:28:16 kls Exp $
*/
#ifndef __CONFIG_H
@@ -227,7 +227,7 @@ public:
fileName = strdup(FileName);
bool result = false;
if (access(FileName, F_OK) == 0) {
- isyslog(LOG_INFO, "loading %s", FileName);
+ isyslog("loading %s", FileName);
FILE *f = fopen(fileName, "r");
if (f) {
int line = 0;
@@ -245,7 +245,7 @@ public:
if (l->Parse(buffer))
Add(l);
else {
- esyslog(LOG_ERR, "error in %s, line %d\n", fileName, line);
+ esyslog("error in %s, line %d\n", fileName, line);
delete l;
result = false;
break;