The 'channel not sync'ed' log message now also lists the card number

This commit is contained in:
Klaus Schmidinger 2001-08-15 09:25:18 +02:00
parent 000ce0cf21
commit 42096e07b6
3 changed files with 8 additions and 4 deletions

View File

@ -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.

View File

@ -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

View File

@ -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;