mirror of
git://git.gnupg.org/gnupg.git
synced 2025-01-21 14:47:03 +01:00
Typo fixes.
Portability fix for asschk.c
This commit is contained in:
parent
e2a98c2b26
commit
c3b9005ec3
4
NEWS
4
NEWS
@ -1,3 +1,7 @@
|
||||
Noteworthy changes in version 2.0.9 (unreleased)
|
||||
------------------------------------------------
|
||||
|
||||
|
||||
Noteworthy changes in version 2.0.8 (2007-12-20)
|
||||
------------------------------------------------
|
||||
|
||||
|
@ -24,8 +24,8 @@ min_automake_version="1.10"
|
||||
# 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 \
|
||||
|
@ -491,8 +491,8 @@ list_cert_colon (ctrl_t ctrl, ksba_cert_t cert, unsigned int validity,
|
||||
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;
|
||||
|
@ -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>
|
||||
|
||||
* asschk.c (read_assuan): Minor cleanups.
|
||||
|
@ -308,7 +308,7 @@ read_assuan (int fd)
|
||||
{
|
||||
int i;
|
||||
|
||||
printf ("%s: read \"", __FUNCTION__);
|
||||
printf ("%s: read \"", __func__);
|
||||
for (i = 0; i < n; i ++)
|
||||
putc (buf[i], stdout);
|
||||
printf ("\"\n");
|
||||
|
Loading…
x
Reference in New Issue
Block a user