Display plugins with zmu even if plugin loading is not enabled
This commit is contained in:
parent
491df7671d
commit
72d1581f44
|
@ -433,7 +433,7 @@ Monitor::Monitor(
|
|||
}
|
||||
|
||||
#if ZM_PLUGINS_ON
|
||||
if ( config.load_plugins && ( ( purpose == ANALYSIS ) || ( purpose == QUERY_PLUGINS ) ) )
|
||||
if ( ( purpose == QUERY_PLUGINS ) || ( config.load_plugins && ( purpose == ANALYSIS ) ) )
|
||||
{
|
||||
Info("Load plugins from the directory %s ... ", config.path_plugins);
|
||||
ThePluginManager.setPluginExt(std::string(config.plugin_extension));
|
||||
|
|
Loading…
Reference in New Issue