diff options
author | Adriaan de Jong <dejong@fox-it.com> | 2011-06-30 14:15:40 +0200 |
---|---|---|
committer | David Sommerseth <davids@redhat.com> | 2011-10-22 11:32:40 +0200 |
commit | 75c67073ed5d35b0efcd2a99492cf34339da08fb (patch) | |
tree | deb4f2137dd918ae06a50bf1e89f94690526eb3a /plugin.c | |
parent | a4c926bb5939d95d9e7c0dfd4b83e61a11f86c90 (diff) | |
download | openvpn-75c67073ed5d35b0efcd2a99492cf34339da08fb.tar.gz openvpn-75c67073ed5d35b0efcd2a99492cf34339da08fb.tar.xz openvpn-75c67073ed5d35b0efcd2a99492cf34339da08fb.zip |
Refactored tls-verify-plugin code
Signed-off-by: Adriaan de Jong <dejong@fox-it.com>
Acked-by: James Yonan <james@openvpn.net>
Signed-off-by: David Sommerseth <davids@redhat.com>
Diffstat (limited to 'plugin.c')
-rw-r--r-- | plugin.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -347,7 +347,7 @@ plugin_call_item (const struct plugin *p, struct openvpn_plugin_string_list **retlist, const char **envp, int certdepth, - X509 *current_cert) + x509_cert_t *current_cert) { int status = OPENVPN_PLUGIN_FUNC_SUCCESS; @@ -576,7 +576,7 @@ plugin_call (const struct plugin_list *pl, struct plugin_return *pr, struct env_set *es, int certdepth, - X509 *current_cert) + x509_cert_t *current_cert) { if (pr) plugin_return_init (pr); |