diff options
author | Stefan Hellermann <stefan@the2masters.de> | 2011-02-28 16:53:26 +0100 |
---|---|---|
committer | David Sommerseth <davids@redhat.com> | 2011-03-25 09:38:48 +0100 |
commit | a75c7dd214874687830d63445de50e111c46723d (patch) | |
tree | 927dfb217e24576eca5ae039d8cd1c66ee51e55d | |
parent | plugin.h: update prototype of plugin_call dummy in !ENABLE_PLUGIN case (diff) | |
download | openvpn-a75c7dd214874687830d63445de50e111c46723d.tar.xz |
Fixed typo in plugin.h
A additional ';' had sneaked in commit 4c4b8cedfa98e8892a53. Lets
kick it out again.
Signed-off-by: Stefan Hellermann <stefan@the2masters.de>
Acked-by: David Sommerseth <davids@redhat.com>
Signed-off-by: David Sommerseth <davids@redhat.com>
-rw-r--r-- | plugin.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -176,7 +176,7 @@ plugin_call (const struct plugin_list *pl, struct plugin_return *pr, struct env_set *es, int current_cert_depth, - X509 *current_cert); + X509 *current_cert) { return 0; } |