]> git.ipfire.org Git - thirdparty/openvpn.git/commitdiff
Fixed missing comma in plugin.h
authorAdriaan de Jong <dejong@fox-it.com>
Mon, 31 Oct 2011 15:29:16 +0000 (16:29 +0100)
committerDavid Sommerseth <davids@redhat.com>
Mon, 7 Nov 2011 14:06:26 +0000 (15:06 +0100)
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>
plugin.h

index 87827511e9e205f039cf18d59419c8d61a0e27c8..7aacb477abe4c92b408493ab0c3a95b35b5a2a38 100644 (file)
--- 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
       );
 }