Fixed a bug where the wrong value was being passed to plugin_call_ssl, due to a missing comma.
Signed-off-by: Adriaan de Jong <dej...@fox-it.com> --- plugin.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/plugin.h b/plugin.h index 8782751..7aacb47 100644 --- a/plugin.h +++ b/plugin.h @@ -132,7 +132,7 @@ plugin_call(const struct plugin_list *pl, { return plugin_call_ssl(pl, type, av, pr, es #ifdef USE_SSL - -1, NULL + , -1, NULL #endif ); } -- 1.7.5.4