From 98e6399593ca58747f43cbf65139afff2f47df82 Mon Sep 17 00:00:00 2001 From: Stefan Schmidt Date: Wed, 18 Nov 2015 10:26:25 +0100 Subject: [PATCH] Revert "eet: removing useless assignment variables." This reverts commit 2a01c4517b5b97c2b988ce590d7dae913ec1f085. Declaring these variable void breaks the build with disabled crypto. Fixes T2855 --- src/lib/eet/eet_cipher.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/lib/eet/eet_cipher.c b/src/lib/eet/eet_cipher.c index bb854528ab..9bff406713 100644 --- a/src/lib/eet/eet_cipher.c +++ b/src/lib/eet/eet_cipher.c @@ -236,9 +236,9 @@ on_error: # endif /* ifdef HAVE_GNUTLS */ #else - void (certificate_file); - void (private_key_file); - void (cb); + certificate_file = NULL; + private_key_file = NULL; + cb = NULL; #endif /* ifdef HAVE_SIGNATURE */ return NULL; }