diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2001-08-15 09:25:18 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2001-08-15 09:25:18 +0200 |
commit | 42096e07b63670e6822cc96cd3b65b6a35fb9444 (patch) | |
tree | cf7c48c4186e6a8bb4ae15ef7955f7ffbfd238cf | |
parent | 000ce0cf21f0eb8eb79156efdd9df615f06ce5f5 (diff) | |
download | vdr-42096e07b63670e6822cc96cd3b65b6a35fb9444.tar.gz vdr-42096e07b63670e6822cc96cd3b65b6a35fb9444.tar.bz2 |
The 'channel not sync'ed' log message now also lists the card number
-rw-r--r-- | HISTORY | 4 | ||||
-rw-r--r-- | config.h | 4 | ||||
-rw-r--r-- | dvbapi.c | 4 |
3 files changed, 8 insertions, 4 deletions
@@ -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. @@ -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 @@ -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; |