summaryrefslogtreecommitdiff
path: root/skins.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2005-10-02 10:20:19 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2005-10-02 10:20:19 +0200
commit8302d81af2cce691722b5f3b22b0fc0f309c68a5 (patch)
tree6c74951e727f8566672530859678671802b115cf /skins.c
parent23aa374e3d428512623675afa11ebf34e650ed7e (diff)
downloadvdr-8302d81af2cce691722b5f3b22b0fc0f309c68a5.tar.gz
vdr-8302d81af2cce691722b5f3b22b0fc0f309c68a5.tar.bz2
Added status message "Resetting CAM..." for an immediate feedback when the CAM reset has been triggered
Diffstat (limited to 'skins.c')
-rw-r--r--skins.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/skins.c b/skins.c
index fb21ed38..e81e8825 100644
--- a/skins.c
+++ b/skins.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: skins.c 1.4 2005/01/14 13:07:19 kls Exp $
+ * $Id: skins.c 1.5 2005/10/02 10:12:10 kls Exp $
*/
#include "skins.h"
@@ -169,8 +169,9 @@ bool cSkins::SetCurrent(const char *Name)
eKeys cSkins::Message(eMessageType Type, const char *s, int Seconds)
{
switch (Type) {
- case mtInfo: isyslog("info: %s", s); break;
- case mtError: esyslog("ERROR: %s", s); break;
+ case mtInfo: isyslog("info: %s", s); break;
+ case mtWarning: isyslog("warning: %s", s); break;
+ case mtError: esyslog("ERROR: %s", s); break;
default: ;
}
if (!Current())