Commit ebd8df0e authored by Rich Salz's avatar Rich Salz
Browse files

Fix build-break; 'make update'



Commit bbd86bf5 broke certain builds.
Commit 0674427f missing 'make update'

Reviewed-by: default avatarRichard Levitte <levitte@openssl.org>
parent bbd86bf5
Loading
Loading
Loading
Loading
+0 −15
Original line number Diff line number Diff line
@@ -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
+2 −2
Original line number Diff line number Diff line
@@ -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) \