Revert "eet: removing useless assignment variables."

This reverts commit 2a01c4517b.

Declaring these variable void breaks the build with disabled crypto.

Fixes T2855
This commit is contained in:
Stefan Schmidt 2015-11-18 10:26:25 +01:00
parent fb4f81b119
commit 2892e54d88
1 changed files with 3 additions and 3 deletions

View File

@ -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;
}