summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorRich Salz <rsalz@openssl.org>2016-01-07 15:40:08 -0500
committerRich Salz <rsalz@openssl.org>2016-01-07 15:40:08 -0500
commitebd8df0ed8a2f39a63662a5246df9e00e240efec (patch)
treeea21baaf40fd1f3414f96b80e2a710c84f82f63e /include
parentbbd86bf5424a611cb6b77a3a17fc522931c4dcb8 (diff)
Fix build-break; 'make update'
Commit bbd86bf5424a611cb6b77a3a17fc522931c4dcb8 broke certain builds. Commit 0674427f71ca050e3c61a7ec9dc71b208c3b39f5 missing 'make update' Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'include')
-rw-r--r--include/openssl/crypto.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/openssl/crypto.h b/include/openssl/crypto.h
index dccb4ffca6..cf98b2cf24 100644
--- a/include/openssl/crypto.h
+++ b/include/openssl/crypto.h
@@ -323,8 +323,8 @@ int CRYPTO_mem_ctrl(int mode);
CRYPTO_clear_free(addr, num)
# define OPENSSL_free(addr) \
CRYPTO_free(addr)
-# define OPENSSL_memdup(str) \
- CRYPTO_memdup(str, NULL, 0)
+# define OPENSSL_memdup(str, s) \
+ CRYPTO_memdup(str, s, NULL, 0)
# define OPENSSL_strdup(str) \
CRYPTO_strdup(str, NULL, 0)
# define OPENSSL_strndup(str, s) \