From 8d22a9905d1243dbaf10493abdbb91718e8f9969 Mon Sep 17 00:00:00 2001 From: Adriaan de Jong Date: Mon, 31 Oct 2011 16:29:16 +0100 Subject: [PATCH] Fixed missing comma in plugin.h 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 Acked-by: David Sommerseth Signed-off-by: David Sommerseth --- plugin.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin.h b/plugin.h index 87827511e..7aacb477a 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 ); } -- 2.47.2