No longer calling cPlugin::ProcessArgs() if VDR is run with the --help or --version option

This commit is contained in:
Klaus Schmidinger
2006-04-09 14:21:30 +02:00
parent a452010760
commit ceafe62671
3 changed files with 6 additions and 2 deletions

View File

@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
* $Id: plugin.c 1.17 2006/02/28 14:16:54 kls Exp $
* $Id: plugin.c 1.18 2006/04/09 14:16:17 kls Exp $
*/
#include "plugin.h"
@@ -232,7 +232,7 @@ bool cDll::Load(bool Log)
if (argc)
plugin->SetName(argv[0]);
optind = 0; // to reset the getopt() data
return !argc || plugin->ProcessArgs(argc, argv);
return !Log || !argc || plugin->ProcessArgs(argc, argv);
}
}
else {