0
0
mirror of https://github.com/OpenVPN/openvpn.git synced 2024-09-20 12:02:28 +02:00

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 <dejong@fox-it.com>
Acked-by: David Sommerseth <davids@redhat.com>
Signed-off-by: David Sommerseth <davids@redhat.com>
This commit is contained in:
Adriaan de Jong 2011-10-31 16:29:16 +01:00 committed by David Sommerseth
parent 6e8b90ec0d
commit 8d22a9905d

View File

@ -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
);
}