Typo fixes.

Portability fix for asschk.c
This commit is contained in:
Werner Koch 2008-01-26 22:12:23 +00:00
parent e2a98c2b26
commit c3b9005ec3
5 changed files with 13 additions and 5 deletions

4
NEWS
View File

@ -1,3 +1,7 @@
Noteworthy changes in version 2.0.9 (unreleased)
------------------------------------------------
Noteworthy changes in version 2.0.8 (2007-12-20) Noteworthy changes in version 2.0.8 (2007-12-20)
------------------------------------------------ ------------------------------------------------

View File

@ -24,8 +24,8 @@ min_automake_version="1.10"
# Remember to change the version number immediately *after* a release. # Remember to change the version number immediately *after* a release.
# Set my_issvn to "yes" for non-released code. Remember to run an # Set my_issvn to "yes" for non-released code. Remember to run an
# "svn up" and "autogen.sh" right before creating a distribution. # "svn up" and "autogen.sh" right before creating a distribution.
m4_define([my_version], [2.0.8]) m4_define([my_version], [2.0.9])
m4_define([my_issvn], [no]) m4_define([my_issvn], [yes])
m4_define([svn_revision], m4_esyscmd([echo -n $( (svn info 2>/dev/null \ m4_define([svn_revision], m4_esyscmd([echo -n $( (svn info 2>/dev/null \

View File

@ -491,8 +491,8 @@ list_cert_colon (ctrl_t ctrl, ksba_cert_t cert, unsigned int validity,
kludge_uid = NULL; kludge_uid = NULL;
for (idx=0; (p = ksba_cert_get_subject (cert,idx)); idx++) for (idx=0; (p = ksba_cert_get_subject (cert,idx)); idx++)
{ {
/* In the case that the same email address is in the subecj DN /* In the case that the same email address is in the subject DN
as weel as in an alternate subject name we avoid printing it as well as in an alternate subject name we avoid printing it
a second time. */ a second time. */
if (kludge_uid && !strcmp (kludge_uid, p)) if (kludge_uid && !strcmp (kludge_uid, p))
continue; continue;

View File

@ -1,3 +1,7 @@
2008-01-17 Werner Koch <wk@g10code.com>
* asschk.c (read_assuan): Use __func__ instead of __FUNCTION__.
2006-11-05 Werner Koch <wk@g10code.com> 2006-11-05 Werner Koch <wk@g10code.com>
* asschk.c (read_assuan): Minor cleanups. * asschk.c (read_assuan): Minor cleanups.

View File

@ -308,7 +308,7 @@ read_assuan (int fd)
{ {
int i; int i;
printf ("%s: read \"", __FUNCTION__); printf ("%s: read \"", __func__);
for (i = 0; i < n; i ++) for (i = 0; i < n; i ++)
putc (buf[i], stdout); putc (buf[i], stdout);
printf ("\"\n"); printf ("\"\n");