summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2013-05-02 09:33:47 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2013-05-02 09:33:47 +0200
commitbe88699b005a51eae2b09d4b057966446be1ee95 (patch)
tree8cfea9bdde51c7ba3caef4f37207be953e251341
parent1b1fe2c887c0638c7b5ad13f20024d7b281885b1 (diff)
downloadvdr-be88699b005a51eae2b09d4b057966446be1ee95.tar.gz
vdr-be88699b005a51eae2b09d4b057966446be1ee95.tar.bz2
Fixed an error message when parsing SCR values in diseqc.conf
-rw-r--r--HISTORY1
-rw-r--r--diseqc.c4
2 files changed, 3 insertions, 2 deletions
diff --git a/HISTORY b/HISTORY
index 46fd8bb6..0c56605c 100644
--- a/HISTORY
+++ b/HISTORY
@@ -7806,3 +7806,4 @@ Video Disk Recorder Revision History
Günther).
- Fixed no longer generating any editing marks if the edited recording results in just
one single sequence.
+- Fixed an error message when parsing SCR values in diseqc.conf.
diff --git a/diseqc.c b/diseqc.c
index 54fb7203..97da936c 100644
--- a/diseqc.c
+++ b/diseqc.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: diseqc.c 2.9 2011/09/17 14:13:31 kls Exp $
+ * $Id: diseqc.c 2.9.1.1 2013/05/02 09:33:12 kls Exp $
*/
#include "diseqc.h"
@@ -192,7 +192,7 @@ const char *cDiseqc::GetScrBank(const char *s) const
}
return p;
}
- esyslog("ERROR: more than one scr bank in '%s'", s - 1);
+ esyslog("ERROR: invalid value for scr bank in '%s'", s - 1);
return NULL;
}