summaryrefslogtreecommitdiff
path: root/plugin.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2006-02-28 14:23:10 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2006-02-28 14:23:10 +0100
commit94afe13373a1afe595075f31ad8ade9dcf125b20 (patch)
treea302df0e43d9f313bed9978307a5cda316783250 /plugin.c
parent457f5dd14c426c7324a7987c4bcd7f9b2b641b6d (diff)
downloadvdr-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.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/plugin.c b/plugin.c
index fdb38e82..6ceb561b 100644
--- a/plugin.c
+++ b/plugin.c
@@ -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);
- }
}