summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Grunder <michael.grunder@gmail.com>2019-11-25 17:01:12 -0800
committerGitHub <noreply@github.com>2019-11-25 17:01:12 -0800
commitf2ef5f0c985a16c07ef610205f92864ac30c34dd (patch)
treec9fc32068dcdfc4f5cb58210a608f57ca9ce5269
parent5d0568d9ae49363ad21b512c52025e45bbf8d02e (diff)
parent42697bd45a226d0841189c5ee6d4987d6cd7f481 (diff)
Merge pull request #737 from natoscott/master
Fix dead code in sslLogCallback relating to should_log variable.
-rw-r--r--ssl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ssl.c b/ssl.c
index 78ab9e4..b97fc1d 100644
--- a/ssl.c
+++ b/ssl.c
@@ -82,8 +82,8 @@ redisContextFuncs redisContextSSLFuncs;
* Callback used for debugging
*/
static void sslLogCallback(const SSL *ssl, int where, int ret) {
- const char *retstr = "";
- int should_log = 1;
+ const char *retstr;
+ int should_log = 0;
/* Ignore low-level SSL stuff */
if (where & SSL_CB_ALERT) {