summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2001-08-15 09:25:18 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2001-08-15 09:25:18 +0200
commit42096e07b63670e6822cc96cd3b65b6a35fb9444 (patch)
treecf7c48c4186e6a8bb4ae15ef7955f7ffbfd238cf
parent000ce0cf21f0eb8eb79156efdd9df615f06ce5f5 (diff)
downloadvdr-42096e07b63670e6822cc96cd3b65b6a35fb9444.tar.gz
vdr-42096e07b63670e6822cc96cd3b65b6a35fb9444.tar.bz2
The 'channel not sync'ed' log message now also lists the card number
-rw-r--r--HISTORY4
-rw-r--r--config.h4
-rw-r--r--dvbapi.c4
3 files changed, 8 insertions, 4 deletions
diff --git a/HISTORY b/HISTORY
index 715b6682..d8544f58 100644
--- a/HISTORY
+++ b/HISTORY
@@ -649,3 +649,7 @@ Video Disk Recorder Revision History
- If there is no free DVB device to record, the log message will now be given
only once.
- Made I/O more robust by handling EINTR (thanks to Werner Fink).
+
+2001-08-15: Version 0.92
+
+- The "channel not sync'ed" log message now also lists the card number.
diff --git a/config.h b/config.h
index c9faf6cb..28974edd 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.59 2001/08/11 15:28:21 kls Exp $
+ * $Id: config.h 1.60 2001/08/15 09:24:10 kls Exp $
*/
#ifndef __CONFIG_H
@@ -19,7 +19,7 @@
#include "eit.h"
#include "tools.h"
-#define VDRVERSION "0.91"
+#define VDRVERSION "0.92"
#define MaxBuffer 10000
diff --git a/dvbapi.c b/dvbapi.c
index 4c386105..a7565fed 100644
--- a/dvbapi.c
+++ b/dvbapi.c
@@ -7,7 +7,7 @@
* DVD support initially written by Andreas Schultz <aschultz@warp10.net>
* based on dvdplayer-0.5 by Matjaz Thaler <matjaz.thaler@guest.arnes.si>
*
- * $Id: dvbapi.c 1.106 2001/08/12 15:09:42 kls Exp $
+ * $Id: dvbapi.c 1.107 2001/08/15 09:07:19 kls Exp $
*/
//#define DVDDEBUG 1
@@ -3160,7 +3160,7 @@ bool cDvbApi::SetChannel(int ChannelNumber, int FrequencyMHz, char Polarization,
}
if (!ChannelSynced) {
- esyslog(LOG_ERR, "ERROR: channel %d not sync'ed!", ChannelNumber);
+ esyslog(LOG_ERR, "ERROR: channel %d not sync'ed on DVB card %d!", ChannelNumber, CardIndex() + 1);
if (this == PrimaryDvbApi)
cThread::RaisePanic();
return false;