diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2006-02-28 14:23:10 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2006-02-28 14:23:10 +0100 |
commit | 94afe13373a1afe595075f31ad8ade9dcf125b20 (patch) | |
tree | a302df0e43d9f313bed9978307a5cda316783250 /plugin.c | |
parent | 457f5dd14c426c7324a7987c4bcd7f9b2b641b6d (diff) | |
download | vdr-94afe13373a1afe595075f31ad8ade9dcf125b20.tar.gz vdr-94afe13373a1afe595075f31ad8ade9dcf125b20.tar.bz2 |
Removed the log message "deleting plugin: ..." when shutting down VDR
Diffstat (limited to 'plugin.c')
-rw-r--r-- | plugin.c | 8 |
1 files changed, 2 insertions, 6 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: plugin.c 1.16 2006/01/08 11:40:05 kls Exp $ + * $Id: plugin.c 1.17 2006/02/28 14:16:54 kls Exp $ */ #include "plugin.h" @@ -427,10 +427,6 @@ void cPluginManager::StopPlugins(void) void cPluginManager::Shutdown(void) { cDll *dll; - while ((dll = dlls.Last()) != NULL) { - cPlugin *p = dll->Plugin(); - if (p) - isyslog("deleting plugin: %s", p->Name()); + while ((dll = dlls.Last()) != NULL) dlls.Del(dll); - } } |