aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBjorn Andersson <bjorn.andersson@sonymobile.com>2015-10-05 11:40:23 -0700
committerBjorn Andersson <bjorn.andersson@sonymobile.com>2015-10-05 11:40:23 -0700
commitf4ee6375b199786041059e2430a68d45257fcb8f (patch)
tree86d8811d40e3d18b1b2539cbe966168da099c460
parent696afca199472dc7a439d6a010f85a11b6b27a25 (diff)
bio_b64: Correct prototype of BIO_f_base64()
Change-Id: Ia4ecf1c945f5beb0fd0c1a00d781d1154984b37f Signed-off-by: Bjorn Andersson <bjorn.andersson@sonymobile.com>
-rw-r--r--bio_b64.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bio_b64.c b/bio_b64.c
index 35d3b7b..489cd9a 100644
--- a/bio_b64.c
+++ b/bio_b64.c
@@ -116,7 +116,7 @@ static BIO_METHOD methods_b64=
b64_callback_ctrl,
};
-BIO_METHOD *BIO_f_base64(void)
+const BIO_METHOD *BIO_f_base64(void)
{
return(&methods_b64);
}