summaryrefslogtreecommitdiffstats
path: root/perl/openssl_cipher.xs
diff options
context:
space:
mode:
Diffstat (limited to 'perl/openssl_cipher.xs')
-rw-r--r--perl/openssl_cipher.xs3
1 files changed, 2 insertions, 1 deletions
diff --git a/perl/openssl_cipher.xs b/perl/openssl_cipher.xs
index fb4c632995..e9ff2a8f79 100644
--- a/perl/openssl_cipher.xs
+++ b/perl/openssl_cipher.xs
@@ -9,13 +9,14 @@ int boot_cipher()
MODULE = OpenSSL::Cipher PACKAGE = OpenSSL::Cipher PREFIX = p5_EVP_C_
+PROTOTYPES: ENABLE
VERSIONCHECK: DISABLE
void
p5_EVP_C_new(...)
PREINIT:
EVP_CIPHER_CTX *ctx;
- EVP_CIPHER *c;
+ const EVP_CIPHER *c;
char *name;
PPCODE:
if ((items == 1) && SvPOK(ST(0)))