From: Stefan Hellermann Date: Sun, 27 Feb 2011 21:15:44 +0000 (+0100) Subject: plugin.h: update prototype of plugin_call dummy in !ENABLE_PLUGIN case X-Git-Tag: v2.3-alpha1~262 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3097fddcad47931a2bd2d91935cc9bad3982b6ea;p=thirdparty%2Fopenvpn.git plugin.h: update prototype of plugin_call dummy in !ENABLE_PLUGIN case Commit 2db5a0ac3e053857d97e468de53e70a605f54561 adds two arguments to plugin_call(...), but missed the !ENABLE_PLUGIN case. With !ENABLE_PLUGIN, plugin_call(...) is only a dummy, so add these two parameters there too. Signed-off-by: Stefan Hellermann Acked-by: David Sommerseth Signed-off-by: David Sommerseth --- diff --git a/plugin.h b/plugin.h index 846973f2a..9d48651d2 100644 --- a/plugin.h +++ b/plugin.h @@ -174,7 +174,9 @@ plugin_call (const struct plugin_list *pl, const int type, const struct argv *av, struct plugin_return *pr, - struct env_set *es) + struct env_set *es, + int current_cert_depth, + X509 *current_cert); { return 0; }