From c7de2da062406a9d61ef7724d008a64515cbc125 Mon Sep 17 00:00:00 2001 From: Nick Bolton Date: Wed, 15 Apr 2015 14:33:26 +0100 Subject: [PATCH] Comment out unused fingerprint filename consts #4522 Causing compile to fail on Mac (fails on warnings) --- src/lib/plugin/ns/SecureSocket.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/plugin/ns/SecureSocket.cpp b/src/lib/plugin/ns/SecureSocket.cpp index 7de15eff..651fd432 100644 --- a/src/lib/plugin/ns/SecureSocket.cpp +++ b/src/lib/plugin/ns/SecureSocket.cpp @@ -37,9 +37,9 @@ #define MAX_ERROR_SIZE 65535 static const char kFingerprintDirName[] = "ssl/fingerprints"; -static const char kFingerprintLocalFilename[] = "local.txt"; +//static const char kFingerprintLocalFilename[] = "local.txt"; static const char kFingerprintTrustedServersFilename[] = "trusted-servers.txt"; -static const char kFingerprintTrustedClientsFilename[] = "trusted-clients.txt"; +//static const char kFingerprintTrustedClientsFilename[] = "trusted-clients.txt"; struct Ssl { SSL_CTX* m_context;