[svn] GnuPG - r4680 - in trunk: . sm tests
svn author wk
cvs at cvs.gnupg.org
Sat Jan 26 23:12:24 CET 2008
Author: wk
Date: 2008-01-26 23:12:23 +0100 (Sat, 26 Jan 2008)
New Revision: 4680
Modified:
trunk/NEWS
trunk/configure.ac
trunk/sm/keylist.c
trunk/tests/ChangeLog
trunk/tests/asschk.c
Log:
Typo fixes.
Portability fix for asschk.c
Modified: trunk/NEWS
===================================================================
--- trunk/NEWS 2008-01-26 13:12:00 UTC (rev 4679)
+++ trunk/NEWS 2008-01-26 22:12:23 UTC (rev 4680)
@@ -1,3 +1,7 @@
+Noteworthy changes in version 2.0.9 (unreleased)
+------------------------------------------------
+
+
Noteworthy changes in version 2.0.8 (2007-12-20)
------------------------------------------------
Modified: trunk/configure.ac
===================================================================
--- trunk/configure.ac 2008-01-26 13:12:00 UTC (rev 4679)
+++ trunk/configure.ac 2008-01-26 22:12:23 UTC (rev 4680)
@@ -24,8 +24,8 @@
# Remember to change the version number immediately *after* a release.
# Set my_issvn to "yes" for non-released code. Remember to run an
# "svn up" and "autogen.sh" right before creating a distribution.
-m4_define([my_version], [2.0.8])
-m4_define([my_issvn], [no])
+m4_define([my_version], [2.0.9])
+m4_define([my_issvn], [yes])
m4_define([svn_revision], m4_esyscmd([echo -n $( (svn info 2>/dev/null \
Modified: trunk/sm/keylist.c
===================================================================
--- trunk/sm/keylist.c 2008-01-26 13:12:00 UTC (rev 4679)
+++ trunk/sm/keylist.c 2008-01-26 22:12:23 UTC (rev 4680)
@@ -491,8 +491,8 @@
kludge_uid = NULL;
for (idx=0; (p = ksba_cert_get_subject (cert,idx)); idx++)
{
- /* In the case that the same email address is in the subecj DN
- as weel as in an alternate subject name we avoid printing it
+ /* In the case that the same email address is in the subject DN
+ as well as in an alternate subject name we avoid printing it
a second time. */
if (kludge_uid && !strcmp (kludge_uid, p))
continue;
Modified: trunk/tests/ChangeLog
===================================================================
--- trunk/tests/ChangeLog 2008-01-26 13:12:00 UTC (rev 4679)
+++ trunk/tests/ChangeLog 2008-01-26 22:12:23 UTC (rev 4680)
@@ -1,3 +1,7 @@
+2008-01-17 Werner Koch <wk at g10code.com>
+
+ * asschk.c (read_assuan): Use __func__ instead of __FUNCTION__.
+
2006-11-05 Werner Koch <wk at g10code.com>
* asschk.c (read_assuan): Minor cleanups.
Modified: trunk/tests/asschk.c
===================================================================
--- trunk/tests/asschk.c 2008-01-26 13:12:00 UTC (rev 4679)
+++ trunk/tests/asschk.c 2008-01-26 22:12:23 UTC (rev 4680)
@@ -308,7 +308,7 @@
{
int i;
- printf ("%s: read \"", __FUNCTION__);
+ printf ("%s: read \"", __func__);
for (i = 0; i < n; i ++)
putc (buf[i], stdout);
printf ("\"\n");
More information about the Gnupg-commits
mailing list