From 94afe13373a1afe595075f31ad8ade9dcf125b20 Mon Sep 17 00:00:00 2001 From: Klaus Schmidinger Date: Tue, 28 Feb 2006 14:23:10 +0100 Subject: Removed the log message "deleting plugin: ..." when shutting down VDR --- plugin.c | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'plugin.c') 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); - } } -- cgit v1.2.3