summaryrefslogtreecommitdiffstats
path: root/plugin.h
diff options
context:
space:
mode:
authorAdriaan de Jong <dejong@fox-it.com>2011-10-31 16:29:16 +0100
committerDavid Sommerseth <davids@redhat.com>2011-11-07 15:06:26 +0100
commit8d22a9905d1243dbaf10493abdbb91718e8f9969 (patch)
treeaca723afe6bfd0ea84552a662ebffe3a7b16c531 /plugin.h
parent6e8b90ec0d0a074ac529541ce9515f25b30bac88 (diff)
downloadopenvpn-8d22a9905d1243dbaf10493abdbb91718e8f9969.tar.gz
openvpn-8d22a9905d1243dbaf10493abdbb91718e8f9969.tar.xz
openvpn-8d22a9905d1243dbaf10493abdbb91718e8f9969.zip
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>
Diffstat (limited to 'plugin.h')
-rw-r--r--plugin.h2
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
);
}