From: Rich Salz Date: Thu, 7 Jan 2016 20:40:08 +0000 (-0500) Subject: Fix build-break; 'make update' X-Git-Tag: OpenSSL_1_1_0-pre2~110 X-Git-Url: https://git.openssl.org/?p=openssl.git;a=commitdiff_plain;h=ebd8df0ed8a2f39a63662a5246df9e00e240efec Fix build-break; 'make update' Commit bbd86bf5424a611cb6b77a3a17fc522931c4dcb8 broke certain builds. Commit 0674427f71ca050e3c61a7ec9dc71b208c3b39f5 missing 'make update' Reviewed-by: Richard Levitte --- diff --git a/crypto/pem/Makefile b/crypto/pem/Makefile index 0fc9a50667..fae7352f80 100644 --- a/crypto/pem/Makefile +++ b/crypto/pem/Makefile @@ -164,21 +164,6 @@ pem_pkey.o: ../../include/openssl/sha.h ../../include/openssl/stack.h pem_pkey.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h pem_pkey.o: ../../include/openssl/x509_vfy.h ../include/internal/asn1_int.h pem_pkey.o: ../include/internal/cryptlib.h pem_pkey.c -pem_seal.o: ../../e_os.h ../../include/openssl/asn1.h -pem_seal.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h -pem_seal.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h -pem_seal.o: ../../include/openssl/ec.h ../../include/openssl/err.h -pem_seal.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h -pem_seal.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h -pem_seal.o: ../../include/openssl/opensslconf.h -pem_seal.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h -pem_seal.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h -pem_seal.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h -pem_seal.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h -pem_seal.o: ../../include/openssl/sha.h ../../include/openssl/stack.h -pem_seal.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h -pem_seal.o: ../../include/openssl/x509_vfy.h ../include/internal/cryptlib.h -pem_seal.o: pem_seal.c pem_sign.o: ../../e_os.h ../../include/openssl/asn1.h pem_sign.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h pem_sign.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h 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) \