From 14c9b9905180a21b8aa648b642ff5d3f7d86e29f Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Fri, 18 Dec 2015 13:16:40 -0500 Subject: [PATCH] mark a variable unused to fix a warning. --- src/common/tortls.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/common/tortls.c b/src/common/tortls.c index 14c283de55..78f731bbcc 100644 --- a/src/common/tortls.c +++ b/src/common/tortls.c @@ -1310,6 +1310,7 @@ find_cipher_by_id(const SSL *ssl, const SSL_METHOD *m, uint16_t cipher) { const SSL_CIPHER *c; #ifdef HAVE_SSL_CIPHER_FIND + (void) m; { unsigned char cipherid[3]; tor_assert(ssl);