diff options
author | jsing <> | 2019-08-11 10:50:23 +0000 |
---|---|---|
committer | jsing <> | 2019-08-11 10:50:23 +0000 |
commit | 026ecb9dcf81edc5f262b0e7822f6d05f6581573 (patch) | |
tree | ab81833f3cf85e4ac1c53c1dd34cd01e8710296e | |
parent | 9b17e135d02d61f0799bf88a83642be82e02660f (diff) | |
download | openbsd-026ecb9dcf81edc5f262b0e7822f6d05f6581573.tar.gz openbsd-026ecb9dcf81edc5f262b0e7822f6d05f6581573.tar.bz2 openbsd-026ecb9dcf81edc5f262b0e7822f6d05f6581573.zip |
Include string.h for memcmp()/memcpy().
-rw-r--r-- | src/lib/libcrypto/cms/cms_dd.c | 4 | ||||
-rw-r--r-- | src/lib/libcrypto/cms/cms_enc.c | 4 | ||||
-rw-r--r-- | src/lib/libcrypto/cms/cms_ess.c | 4 | ||||
-rw-r--r-- | src/lib/libcrypto/cms/cms_pwri.c | 4 | ||||
-rw-r--r-- | src/lib/libcrypto/cms/cms_sd.c | 4 |
5 files changed, 15 insertions, 5 deletions
diff --git a/src/lib/libcrypto/cms/cms_dd.c b/src/lib/libcrypto/cms/cms_dd.c index ac2fdbb30f..f5295942bf 100644 --- a/src/lib/libcrypto/cms/cms_dd.c +++ b/src/lib/libcrypto/cms/cms_dd.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: cms_dd.c,v 1.12 2019/08/11 10:38:27 jsing Exp $ */ | 1 | /* $OpenBSD: cms_dd.c,v 1.13 2019/08/11 10:50:23 jsing Exp $ */ |
2 | /* | 2 | /* |
3 | * Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL | 3 | * Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL |
4 | * project. | 4 | * project. |
@@ -52,6 +52,8 @@ | |||
52 | * ==================================================================== | 52 | * ==================================================================== |
53 | */ | 53 | */ |
54 | 54 | ||
55 | #include <string.h> | ||
56 | |||
55 | #include "cryptlib.h" | 57 | #include "cryptlib.h" |
56 | #include <openssl/asn1t.h> | 58 | #include <openssl/asn1t.h> |
57 | #include <openssl/pem.h> | 59 | #include <openssl/pem.h> |
diff --git a/src/lib/libcrypto/cms/cms_enc.c b/src/lib/libcrypto/cms/cms_enc.c index 5bcae3c1ee..09a0d155b4 100644 --- a/src/lib/libcrypto/cms/cms_enc.c +++ b/src/lib/libcrypto/cms/cms_enc.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: cms_enc.c,v 1.17 2019/08/11 10:43:57 jsing Exp $ */ | 1 | /* $OpenBSD: cms_enc.c,v 1.18 2019/08/11 10:50:23 jsing Exp $ */ |
2 | /* | 2 | /* |
3 | * Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL | 3 | * Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL |
4 | * project. | 4 | * project. |
@@ -52,6 +52,8 @@ | |||
52 | * ==================================================================== | 52 | * ==================================================================== |
53 | */ | 53 | */ |
54 | 54 | ||
55 | #include <string.h> | ||
56 | |||
55 | #include "cryptlib.h" | 57 | #include "cryptlib.h" |
56 | #include <openssl/asn1t.h> | 58 | #include <openssl/asn1t.h> |
57 | #include <openssl/pem.h> | 59 | #include <openssl/pem.h> |
diff --git a/src/lib/libcrypto/cms/cms_ess.c b/src/lib/libcrypto/cms/cms_ess.c index d488297c87..c460ba86e2 100644 --- a/src/lib/libcrypto/cms/cms_ess.c +++ b/src/lib/libcrypto/cms/cms_ess.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: cms_ess.c,v 1.17 2019/08/11 10:41:49 jsing Exp $ */ | 1 | /* $OpenBSD: cms_ess.c,v 1.18 2019/08/11 10:50:23 jsing Exp $ */ |
2 | /* | 2 | /* |
3 | * Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL | 3 | * Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL |
4 | * project. | 4 | * project. |
@@ -52,6 +52,8 @@ | |||
52 | * ==================================================================== | 52 | * ==================================================================== |
53 | */ | 53 | */ |
54 | 54 | ||
55 | #include <string.h> | ||
56 | |||
55 | #include "cryptlib.h" | 57 | #include "cryptlib.h" |
56 | #include <openssl/asn1t.h> | 58 | #include <openssl/asn1t.h> |
57 | #include <openssl/pem.h> | 59 | #include <openssl/pem.h> |
diff --git a/src/lib/libcrypto/cms/cms_pwri.c b/src/lib/libcrypto/cms/cms_pwri.c index 918e37c88d..6120cee4c9 100644 --- a/src/lib/libcrypto/cms/cms_pwri.c +++ b/src/lib/libcrypto/cms/cms_pwri.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: cms_pwri.c,v 1.22 2019/08/11 10:43:57 jsing Exp $ */ | 1 | /* $OpenBSD: cms_pwri.c,v 1.23 2019/08/11 10:50:23 jsing Exp $ */ |
2 | /* | 2 | /* |
3 | * Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL | 3 | * Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL |
4 | * project. | 4 | * project. |
@@ -52,6 +52,8 @@ | |||
52 | * ==================================================================== | 52 | * ==================================================================== |
53 | */ | 53 | */ |
54 | 54 | ||
55 | #include <string.h> | ||
56 | |||
55 | #include "cryptlib.h" | 57 | #include "cryptlib.h" |
56 | #include <openssl/asn1t.h> | 58 | #include <openssl/asn1t.h> |
57 | #include <openssl/pem.h> | 59 | #include <openssl/pem.h> |
diff --git a/src/lib/libcrypto/cms/cms_sd.c b/src/lib/libcrypto/cms/cms_sd.c index 0681bf2759..5333d2c9d2 100644 --- a/src/lib/libcrypto/cms/cms_sd.c +++ b/src/lib/libcrypto/cms/cms_sd.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: cms_sd.c,v 1.20 2019/08/11 10:41:49 jsing Exp $ */ | 1 | /* $OpenBSD: cms_sd.c,v 1.21 2019/08/11 10:50:23 jsing Exp $ */ |
2 | /* | 2 | /* |
3 | * Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL | 3 | * Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL |
4 | * project. | 4 | * project. |
@@ -52,6 +52,8 @@ | |||
52 | * ==================================================================== | 52 | * ==================================================================== |
53 | */ | 53 | */ |
54 | 54 | ||
55 | #include <string.h> | ||
56 | |||
55 | #include "cryptlib.h" | 57 | #include "cryptlib.h" |
56 | #include <openssl/asn1t.h> | 58 | #include <openssl/asn1t.h> |
57 | #include <openssl/pem.h> | 59 | #include <openssl/pem.h> |