From 555dac5e98ac73496fc5cf9a147489a0479f2bfd Mon Sep 17 00:00:00 2001 From: Rob Crittenden Date: Thu, 1 Oct 2015 12:07:04 -0400 Subject: Fix some compiler warnings (and one real bug) Most of these are unused variable. There is one adding an extra set of parens. The bug is using the wrong index variable, i instead of j. --- nss_engine_cipher.c | 1 - 1 file changed, 1 deletion(-) (limited to 'nss_engine_cipher.c') diff --git a/nss_engine_cipher.c b/nss_engine_cipher.c index 258150a..5ea1f53 100644 --- a/nss_engine_cipher.c +++ b/nss_engine_cipher.c @@ -233,7 +233,6 @@ static int parse_openssl_ciphers(server_rec *s, char *ciphers, PRBool cipher_lis * So we need to disable all the NULL ciphers too. */ int mask = SSL_aNULL | SSL_eNULL; - PRBool enabled; found = PR_TRUE; for (i=0; i < ciphernum; i++) { if (cipher_list[i] != -1) -- cgit