diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2005-10-02 10:20:19 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2005-10-02 10:20:19 +0200 |
commit | 8302d81af2cce691722b5f3b22b0fc0f309c68a5 (patch) | |
tree | 6c74951e727f8566672530859678671802b115cf /skins.c | |
parent | 23aa374e3d428512623675afa11ebf34e650ed7e (diff) | |
download | vdr-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.c | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -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()) |