From: Adriaan de Jong Date: Mon, 31 Oct 2011 15:29:16 +0000 (+0100) Subject: Fixed missing comma in plugin.h X-Git-Tag: v2.3-alpha1~71 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8d22a9905d1243dbaf10493abdbb91718e8f9969;p=thirdparty%2Fopenvpn.git 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 --- 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 ); }