diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2005-01-30 14:23:01 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2005-01-30 14:23:01 +0100 |
commit | 2bec1d5ca0aad0bc18d99ed33c1b1ce443abb699 (patch) | |
tree | 744c9c05dd6ed3922174a93ed515581e64bc4dfd /vdr.c | |
parent | a430f64252f5b38bb19dc151c3793d66d64a8fb7 (diff) | |
download | vdr-2bec1d5ca0aad0bc18d99ed33c1b1ce443abb699.tar.gz vdr-2bec1d5ca0aad0bc18d99ed33c1b1ce443abb699.tar.bz2 |
Added cPlugin::Stop()
Diffstat (limited to 'vdr.c')
-rw-r--r-- | vdr.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -22,7 +22,7 @@ * * The project's page is at http://www.cadsoft.de/vdr * - * $Id: vdr.c 1.200 2005/01/14 16:50:39 kls Exp $ + * $Id: vdr.c 1.201 2005/01/30 14:15:50 kls Exp $ */ #include <getopt.h> @@ -928,6 +928,7 @@ int main(int argc, char *argv[]) Exit: + PluginManager.StopPlugins(); cRecordControls::Shutdown(); cCutter::Stop(); delete Menu; @@ -941,7 +942,7 @@ Exit: Setup.CurrentVolume = cDevice::CurrentVolume(); Setup.Save(); cDevice::Shutdown(); - PluginManager.Shutdown(true); + PluginManager.Shutdown(); ReportEpgBugFixStats(); if (WatchdogTimeout > 0) dsyslog("max. latency time %d seconds", MaxLatencyTime); |