stefan pushed a commit to branch efl-1.16.

http://git.enlightenment.org/core/efl.git/commit/?id=98e6399593ca58747f43cbf65139afff2f47df82

commit 98e6399593ca58747f43cbf65139afff2f47df82
Author: Stefan Schmidt <ste...@osg.samsung.com>
Date:   Wed Nov 18 10:26:25 2015 +0100

    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 bb85452..9bff406 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;
 }

-- 


Reply via email to