aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-ssl.c
diff options
context:
space:
mode:
authorStephen Fisher <steve@stephen-fisher.com>2007-04-13 01:03:55 +0000
committerStephen Fisher <steve@stephen-fisher.com>2007-04-13 01:03:55 +0000
commit994846f215c3a2107f2450e15b5e6881bad5fe56 (patch)
treee3025836712d4da00838fa6ba51c5383f80cc726 /epan/dissectors/packet-ssl.c
parentf002ac6db5099393872c7e041f78c85e95581195 (diff)
Fix unused variable warning when neither SSL_DECRYPT_DEBUG nor HAVE_LIBGNUTLS is defined.
svn path=/trunk/; revision=21399
Diffstat (limited to 'epan/dissectors/packet-ssl.c')
-rw-r--r--epan/dissectors/packet-ssl.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/epan/dissectors/packet-ssl.c b/epan/dissectors/packet-ssl.c
index f5084bad95..b7a1c3bad8 100644
--- a/epan/dissectors/packet-ssl.c
+++ b/epan/dissectors/packet-ssl.c
@@ -260,7 +260,10 @@ static StringInfo ssl_decrypted_data = {NULL, 0};
static gint ssl_decrypted_data_avail = 0;
static gchar* ssl_keys_list = NULL;
+
+#if defined(SSL_DECRYPT_DEBUG) || defined(HAVE_LIBGNUTLS)
static gchar* ssl_debug_file_name = NULL;
+#endif
const gchar* ssl_version_short_names[] = {
"SSL",