diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2005-09-03 12:36:51 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2005-09-03 12:36:51 +0200 |
commit | 590d56bf594cbb23ba891c573bf85165baa84538 (patch) | |
tree | f9eb6f2e0747ab2763cdd8e2a4bc328bb114e634 /vdr.c | |
parent | 32733e430a3e91ea359333e2859a05d31fbbcfbe (diff) | |
download | vdr-590d56bf594cbb23ba891c573bf85165baa84538.tar.gz vdr-590d56bf594cbb23ba891c573bf85165baa84538.tar.bz2 |
The main menu function of a plugin can now be called programmatically
Diffstat (limited to 'vdr.c')
-rw-r--r-- | vdr.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -22,7 +22,7 @@ * * The project's page is at http://www.cadsoft.de/vdr * - * $Id: vdr.c 1.213 2005/09/03 11:50:28 kls Exp $ + * $Id: vdr.c 1.214 2005/09/03 12:35:29 kls Exp $ */ #include <getopt.h> @@ -724,6 +724,8 @@ int main(int argc, char *argv[]) ((cOsdMenu*)Menu)->Display(); } } + else + esyslog("ERROR: unknown plugin '%s'", cRemote::GetPlugin()); key = kNone; // nobody else needs to see these keys } break; |