summaryrefslogtreecommitdiffstats
path: root/meta/recipes-connectivity/openssl/openssl/Fix-typo-introduced-by-a03f81f4.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-connectivity/openssl/openssl/Fix-typo-introduced-by-a03f81f4.patch')
-rw-r--r--meta/recipes-connectivity/openssl/openssl/Fix-typo-introduced-by-a03f81f4.patch29
1 files changed, 0 insertions, 29 deletions
diff --git a/meta/recipes-connectivity/openssl/openssl/Fix-typo-introduced-by-a03f81f4.patch b/meta/recipes-connectivity/openssl/openssl/Fix-typo-introduced-by-a03f81f4.patch
deleted file mode 100644
index 04112966ab..0000000000
--- a/meta/recipes-connectivity/openssl/openssl/Fix-typo-introduced-by-a03f81f4.patch
+++ /dev/null
@@ -1,29 +0,0 @@
1From 581215a519c66db7255ea360ed25bb00033ccd52 Mon Sep 17 00:00:00 2001
2From: Rich Salz <rsalz@openssl.org>
3Date: Thu, 22 Sep 2016 08:47:45 -0400
4Subject: [PATCH] Fix typo introduced by a03f81f4
5
6Reviewed-by: Richard Levitte <levitte@openssl.org>
7
8Upstream-Status: Backport [https://github.com/openssl/openssl/commit/581215a519c66db7255ea360ed25bb00033ccd52]
9Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
10---
11 crypto/engine/eng_cryptodev.c | 2 +-
12 1 file changed, 1 insertion(+), 1 deletion(-)
13
14diff --git a/crypto/engine/eng_cryptodev.c b/crypto/engine/eng_cryptodev.c
15index 65a74df..2a2b95c 100644
16--- a/crypto/engine/eng_cryptodev.c
17+++ b/crypto/engine/eng_cryptodev.c
18@@ -939,7 +939,7 @@ static int cryptodev_digest_copy(EVP_MD_CTX *to, const EVP_MD_CTX *from)
19 if (fstate->mac_len != 0) {
20 if (fstate->mac_data != NULL) {
21 dstate->mac_data = OPENSSL_malloc(fstate->mac_len);
22- if (dstate->ac_data == NULL) {
23+ if (dstate->mac_data == NULL) {
24 printf("cryptodev_digest_init: malloc failed\n");
25 return 0;
26 }
27--
282.1.4
29