[git] KSBA - branch, master, updated. libksba-1.3.5-7-g707862a
by Kai Michaelis
cvs at cvs.gnupg.org
Wed Aug 9 15:44:56 CEST 2017
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "KSBA is a library to access X.509 certificates and CMS data.".
The branch, master has been updated
via 707862ab44fb6cca79dacbf866a7066d941b92fc (commit)
from c7f4ef5b5ebc8d6be2c56f14da999a36735a2eba (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 707862ab44fb6cca79dacbf866a7066d941b92fc
Author: Kai Michaelis <kai at gnupg.org>
Date: Wed Aug 9 15:40:53 2017 +0200
Don't use decls in for-loop headers.
libksba compiles w/ C90
diff --git a/tests/t-reader.c b/tests/t-reader.c
index 53118b5..2b6a40c 100644
--- a/tests/t-reader.c
+++ b/tests/t-reader.c
@@ -195,7 +195,8 @@ main (int argc, char **argv)
}
else
{
- for (int i = 1; i < argc; ++i)
+ int i;
+ for (i = 1; i < argc; ++i)
{
test_fd (argv[i]);
test_file (argv[i]);
-----------------------------------------------------------------------
Summary of changes:
tests/t-reader.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
hooks/post-receive
--
KSBA is a library to access X.509 certificates and CMS data.
http://git.gnupg.org
More information about the Gnupg-commits
mailing list