[Openvpn-devel] Fix naming error in sample-plugins/defer/simple.c
Commit Message
---
sample/sample-plugins/defer/simple.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Comments
Acked-by: Gert Doering <gert@greenie.muc.de>
"That's what I get for copy-paste code reuse" :-)
Your patch has been applied to the master, release/2.5 and release/2.4 branch.
commit 2d7e1954cae51ff317de886cc6b6c2daab7b59ea (master)
commit fe8739da3135e3d21b657c23f3bddcb7e5b3f9f3 (release/2.5)
commit 75a7d795acba972cd8b96dc44a5ba1970373226f (release/2.4)
Author: Greg Cox
Date: Mon Jan 25 07:15:57 2021 +0000
Fix naming error in sample-plugins/defer/simple.c
Acked-by: Gert Doering <gert@greenie.muc.de>
Message-Id: <1611558957-2958-1-git-send-email-gcox@mozilla.com>
URL: https://www.mail-archive.com/openvpn-devel@lists.sourceforge.net/msg21482.html
Signed-off-by: Gert Doering <gert@greenie.muc.de>
--
kind regards,
Gert Doering
@@ -148,7 +148,7 @@ openvpn_plugin_open_v3(const int v3structver,
/* Check API compatibility -- struct version 5 or higher needed */
if (v3structver < 5)
{
- fprintf(stderr, "sample-client-connect: this plugin is incompatible with the running version of OpenVPN\n");
+ fprintf(stderr, "%s: this plugin is incompatible with the running version of OpenVPN\n", MODULE);
return OPENVPN_PLUGIN_FUNC_ERROR;
}