32 lines
987 B
Diff
32 lines
987 B
Diff
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;
|