diff options
author | Nikos Mavrogiannopoulos <nmav@redhat.com> | 2016-05-20 14:54:38 +0200 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@redhat.com> | 2016-05-20 14:54:38 +0200 |
commit | 369a364007a141c73831e95b60be4cd81eec0d63 (patch) | |
tree | cf53ab4952fa42a08ee27ecaa2f4e235ecc95f56 /lib/cipher_int.c | |
parent | 1445215a1210df12df28fe0faf48972d0c095857 (diff) | |
download | gnutls-369a364007a141c73831e95b60be4cd81eec0d63.tar.gz |
Amend: Allow for conditional compilation of SSL 3.0 protocol
This patch makes conditional several more SSL 3.0-only parts of codebase.
Diffstat (limited to 'lib/cipher_int.c')
-rw-r--r-- | lib/cipher_int.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/cipher_int.c b/lib/cipher_int.c index 4e3e50373a..6482e00bc5 100644 --- a/lib/cipher_int.c +++ b/lib/cipher_int.c @@ -173,7 +173,9 @@ int _gnutls_auth_cipher_init(auth_cipher_hd_st * handle, const mac_entry_st * me, const gnutls_datum_t * mac_key, unsigned etm, +#ifdef ENABLE_SSL3 unsigned ssl_hmac, +#endif int enc) { int ret; |