diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2000-11-01 15:52:00 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2000-11-01 15:52:00 +0100 |
commit | aea68eb1976ce6925cd3b206ad7327e749f32599 (patch) | |
tree | ef15d2df12721a91577b59e54cd847df90172053 | |
parent | b34fa9d33aa8f8708630ae275af7b4df479ea3b0 (diff) | |
download | vdr-aea68eb1976ce6925cd3b206ad7327e749f32599.tar.gz vdr-aea68eb1976ce6925cd3b206ad7327e749f32599.tar.bz2 |
Fixed unsuitable info message with group name
-rw-r--r-- | config.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -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; } |