1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-02 22:46:30 +02:00

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

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>
* asschk.c (read_assuan): Minor cleanups.

View file

@ -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");