Remove unused patches from repo
This commit is contained in:
parent
f53d24b89c
commit
b9c0ecfcdf
@ -1,31 +0,0 @@
|
|||||||
From 2e4135284e7aaeac2218878041de31d8e724dc8f Mon Sep 17 00:00:00 2001
|
|
||||||
From: =?UTF-8?q?Bj=C3=B6rn=20Esser?= <besser82@fedoraproject.org>
|
|
||||||
Date: Thu, 24 Jan 2019 22:22:36 +0100
|
|
||||||
Subject: [PATCH] test-alg-hmac-sha1: Fix -Wformat-overflow.
|
|
||||||
|
|
||||||
---
|
|
||||||
test-alg-hmac-sha1.c | 11 +++++++++--
|
|
||||||
1 file changed, 9 insertions(+), 2 deletions(-)
|
|
||||||
|
|
||||||
diff --git a/test-alg-hmac-sha1.c b/test-alg-hmac-sha1.c
|
|
||||||
index ffc6cb4..167f0b4 100644
|
|
||||||
--- a/test-alg-hmac-sha1.c
|
|
||||||
+++ b/test-alg-hmac-sha1.c
|
|
||||||
@@ -162,8 +162,15 @@ main (void)
|
|
||||||
if (strcmp (dbuf, test->expect) != 0)
|
|
||||||
{
|
|
||||||
n = 1;
|
|
||||||
- printf ("\nkey=%s, data=%s,\nresult=%s: %s\n",
|
|
||||||
- test->key, test->data, dbuf, test->expect);
|
|
||||||
+ printf ("\nkey=");
|
|
||||||
+ puts (test->key);
|
|
||||||
+ puts (", data=");
|
|
||||||
+ puts (test->data);
|
|
||||||
+ printf (",\nresult=");
|
|
||||||
+ puts (dbuf);
|
|
||||||
+ puts (": ");
|
|
||||||
+ puts (test->expect);
|
|
||||||
+ printf ("\n");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return n;
|
|
@ -1,40 +0,0 @@
|
|||||||
From 8d109010f022ac75e383ac74d1961c0c63a16c3a Mon Sep 17 00:00:00 2001
|
|
||||||
From: =?UTF-8?q?Bj=C3=B6rn=20Esser?= <besser82@fedoraproject.org>
|
|
||||||
Date: Tue, 19 Feb 2019 10:59:43 +0100
|
|
||||||
Subject: [PATCH] test-alg-hmac-sha1: Use fputs() instead of puts().
|
|
||||||
|
|
||||||
puts() appends a newline character at the
|
|
||||||
end of the output, while fputs() does not.
|
|
||||||
---
|
|
||||||
test-alg-hmac-sha1.c | 18 +++++++++---------
|
|
||||||
1 file changed, 9 insertions(+), 9 deletions(-)
|
|
||||||
|
|
||||||
diff --git a/test-alg-hmac-sha1.c b/test-alg-hmac-sha1.c
|
|
||||||
index 167f0b4..5a87c7b 100644
|
|
||||||
--- a/test-alg-hmac-sha1.c
|
|
||||||
+++ b/test-alg-hmac-sha1.c
|
|
||||||
@@ -162,15 +162,15 @@ main (void)
|
|
||||||
if (strcmp (dbuf, test->expect) != 0)
|
|
||||||
{
|
|
||||||
n = 1;
|
|
||||||
- printf ("\nkey=");
|
|
||||||
- puts (test->key);
|
|
||||||
- puts (", data=");
|
|
||||||
- puts (test->data);
|
|
||||||
- printf (",\nresult=");
|
|
||||||
- puts (dbuf);
|
|
||||||
- puts (": ");
|
|
||||||
- puts (test->expect);
|
|
||||||
- printf ("\n");
|
|
||||||
+ fputs ("\nkey=", stdout);
|
|
||||||
+ fputs (test->key, stdout);
|
|
||||||
+ fputs (", data=", stdout);
|
|
||||||
+ fputs (test->data, stdout);
|
|
||||||
+ fputs (",\nresult=", stdout);
|
|
||||||
+ fputs (dbuf, stdout);
|
|
||||||
+ fputs (": ", stdout);
|
|
||||||
+ fputs (test->expect, stdout);
|
|
||||||
+ fputs ("\n", stdout);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return n;
|
|
@ -158,8 +158,6 @@ URL: https://github.com/besser82/%{name}
|
|||||||
Source0: %{url}/archive/v%{version}/%{name}-%{version}.tar.gz
|
Source0: %{url}/archive/v%{version}/%{name}-%{version}.tar.gz
|
||||||
|
|
||||||
# Patch 0000 - 2999: Backported patches from upstream.
|
# Patch 0000 - 2999: Backported patches from upstream.
|
||||||
Patch0000: %{url}/commit/2e4135284e7aaeac2218878041de31d8e724dc8f.patch#/%{name}-4.4.3-test-alg-hmac-sha1_Fix_format-overflow.patch
|
|
||||||
Patch0001: %{url}/commit/8d109010f022ac75e383ac74d1961c0c63a16c3a.patch#/%{name}-4.4.3-test-alg-hmac-sha1_Use_fputs.patch
|
|
||||||
|
|
||||||
# Patch 3000 - 5999: Backported patches from pull requests.
|
# Patch 3000 - 5999: Backported patches from pull requests.
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user