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 /src/lib/libcrypto/cms/cms_sd.c | |
parent | 9b17e135d02d61f0799bf88a83642be82e02660f (diff) | |
download | openbsd-026ecb9dcf81edc5f262b0e7822f6d05f6581573.tar.gz openbsd-026ecb9dcf81edc5f262b0e7822f6d05f6581573.tar.bz2 openbsd-026ecb9dcf81edc5f262b0e7822f6d05f6581573.zip |
Include string.h for memcmp()/memcpy().
Diffstat (limited to '')
-rw-r--r-- | src/lib/libcrypto/cms/cms_sd.c | 4 |
1 files changed, 3 insertions, 1 deletions
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> |