From aea68eb1976ce6925cd3b206ad7327e749f32599 Mon Sep 17 00:00:00 2001 From: Klaus Schmidinger Date: Wed, 1 Nov 2000 15:52:00 +0100 Subject: [PATCH] Fixed unsuitable info message with group name --- config.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/config.c b/config.c index 730ed8a6..0595b105 100644 --- a/config.c +++ b/config.c @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: config.c 1.28 2000/11/01 13:42:52 kls Exp $ + * $Id: config.c 1.29 2000/11/01 15:52:00 kls Exp $ */ #include "config.h" @@ -270,7 +270,8 @@ bool cChannel::Switch(cDvbApi *DvbApi) } return false; } - Interface->Info(DvbApi->Recording() ? "Channel locked (recording)!" : name); + if (DvbApi->Recording()) + Interface->Info("Channel locked (recording)!"); return false; }