aboutsummaryrefslogtreecommitdiff
path: root/lib/vtls/axtls.c
diff options
context:
space:
mode:
authorJohannes Schindelin <johannes.schindelin@gmx.de>2017-06-25 13:06:54 +0200
committerDaniel Stenberg <daniel@haxx.se>2017-08-28 14:56:55 +0200
commitb31d1dcddb6dc7a111d2d8a8806c55ab439e76a7 (patch)
treeee4efd6ac755ef88f10e9ff1af8ff317d9cec0ce /lib/vtls/axtls.c
parentdd02a9a341659ed06839a474d685b99af3a082e2 (diff)
vtls: make sure all _cleanup() functions return void
This patch makes the signature of the _cleanup() functions consistent among the SSL backends, in preparation for unifying the way all SSL backends are accessed. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Diffstat (limited to 'lib/vtls/axtls.c')
-rw-r--r--lib/vtls/axtls.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/vtls/axtls.c b/lib/vtls/axtls.c
index f0e376640..e063232ea 100644
--- a/lib/vtls/axtls.c
+++ b/lib/vtls/axtls.c
@@ -57,10 +57,9 @@ int Curl_axtls_init(void)
return 1;
}
-int Curl_axtls_cleanup(void)
+void Curl_axtls_cleanup(void)
{
/* axTLS has no global cleanup. Perhaps can move this to axtls.h. */
- return 1;
}
static CURLcode map_error_to_curl(int axtls_err)