summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorWerner Koch <wk@gnupg.org>2008-01-26 23:12:23 +0100
committerWerner Koch <wk@gnupg.org>2008-01-26 23:12:23 +0100
commitc3b9005ec3c02e90cc5fba3e654521d87140a29c (patch)
tree7b7739906c2aacec1caf788880e32ce8d5a7fdbd /tests
parentAdd --logger-fd alias. (diff)
downloadgnupg2-c3b9005ec3c02e90cc5fba3e654521d87140a29c.tar.xz
gnupg2-c3b9005ec3c02e90cc5fba3e654521d87140a29c.zip
Typo fixes.
Portability fix for asschk.c
Diffstat (limited to 'tests')
-rw-r--r--tests/ChangeLog4
-rw-r--r--tests/asschk.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/tests/ChangeLog b/tests/ChangeLog
index e58eef1d3..273257aba 100644
--- a/tests/ChangeLog
+++ b/tests/ChangeLog
@@ -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.
diff --git a/tests/asschk.c b/tests/asschk.c
index 356613901..176fcac6f 100644
--- a/tests/asschk.c
+++ b/tests/asschk.c
@@ -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");