From 92c04c6b9dbdd11cd0432cb19b6fb2ae0d01c141 Mon Sep 17 00:00:00 2001 From: Aaron Jones Date: Thu, 15 Sep 2016 20:14:01 +0000 Subject: [PATCH] OpenSSL: Final round of const correctness I'm happy with the state of this backend now. I don't anticipate making any further changes. --- libratbox/src/openssl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libratbox/src/openssl.c b/libratbox/src/openssl.c index cff12c78..0e362bfe 100644 --- a/libratbox/src/openssl.c +++ b/libratbox/src/openssl.c @@ -181,7 +181,7 @@ rb_ssl_tryconn_cb(rb_fde_t *const F, void *const data) } static const char * -rb_ssl_strerror(unsigned long err) +rb_ssl_strerror(const unsigned long err) { static char errbuf[512];