summaryrefslogtreecommitdiff
path: root/debian
diff options
context:
space:
mode:
authorYves-Alexis Perez <corsac@debian.org>2013-10-17 21:30:48 +0200
committerYves-Alexis Perez <corsac@debian.org>2013-10-17 21:30:48 +0200
commit4fabe46b04a6d8ff1aa884e2bebe0f82ba3c24a3 (patch)
tree111f85a864582a050e3740724fd6664484652fbf /debian
parent9d37ad77ef660b92ea51b69d74e14f931d2a04e2 (diff)
downloadvyos-strongswan-4fabe46b04a6d8ff1aa884e2bebe0f82ba3c24a3.tar.gz
vyos-strongswan-4fabe46b04a6d8ff1aa884e2bebe0f82ba3c24a3.zip
remove obsolete patch
Diffstat (limited to 'debian')
-rw-r--r--debian/patches/0001-Check-return-value-of-ECDSA_Verify-correctly.patch26
1 files changed, 0 insertions, 26 deletions
diff --git a/debian/patches/0001-Check-return-value-of-ECDSA_Verify-correctly.patch b/debian/patches/0001-Check-return-value-of-ECDSA_Verify-correctly.patch
deleted file mode 100644
index abd1f1921..000000000
--- a/debian/patches/0001-Check-return-value-of-ECDSA_Verify-correctly.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-From 0faaab20cd9c4a519fb6269ab6c8be15d0b61864 Mon Sep 17 00:00:00 2001
-From: Martin Willi <martin@revosec.ch>
-Date: Tue, 9 Apr 2013 10:56:09 +0200
-Subject: Check return value of ECDSA_Verify() correctly
-
----
- src/libstrongswan/plugins/openssl/openssl_ec_public_key.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/src/libstrongswan/plugins/openssl/openssl_ec_public_key.c b/src/libstrongswan/plugins/openssl/openssl_ec_public_key.c
-index c8a45f7..38cc8be 100644
---- a/src/libstrongswan/plugins/openssl/openssl_ec_public_key.c
-+++ b/src/libstrongswan/plugins/openssl/openssl_ec_public_key.c
-@@ -124,7 +124,7 @@ static bool verify_der_signature(private_openssl_ec_public_key_t *this,
- if (openssl_hash_chunk(nid_hash, data, &hash))
- {
- valid = ECDSA_verify(0, hash.ptr, hash.len,
-- signature.ptr, signature.len, this->ec);
-+ signature.ptr, signature.len, this->ec) == 1;
- free(hash.ptr);
- }
- return valid;
---
-1.7.10.4
-
-