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 * based on dvdplayer-0.5 by Matjaz Thaler * - * $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;