aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>2000-03-03 10:28:05 +0000
committerWerner Koch <[email protected]>2000-03-03 10:28:05 +0000
commitc8efcabec4b618478fd010f41d5d8edbf43f54be (patch)
tree5bb24de19106b6fee0ccab91b1554cb231982007
parentSee ChangeLog: Thu Mar 2 15:37:46 CET 2000 Werner Koch (diff)
downloadgnupg-c8efcabec4b618478fd010f41d5d8edbf43f54be.tar.gz
gnupg-c8efcabec4b618478fd010f41d5d8edbf43f54be.zip
See ChangeLog: Fri Mar 3 11:29:29 CET 2000 Werner Koch
-rw-r--r--util/ChangeLog6
-rw-r--r--util/ttyio.c2
2 files changed, 6 insertions, 2 deletions
diff --git a/util/ChangeLog b/util/ChangeLog
index 72a7f5d5f..e8585ac27 100644
--- a/util/ChangeLog
+++ b/util/ChangeLog
@@ -1,3 +1,7 @@
+2000-03-02 15:51:04 Werner Koch ([email protected])
+
+ * ttyio.c (tty_print_utf8_string): Oops.
+
Thu Mar 2 15:37:46 CET 2000 Werner Koch <[email protected]>
* ttyio.c (tty_print_utf8_string2): New to allow a max output size.
@@ -118,7 +122,7 @@ Sat Jun 26 12:15:59 CEST 1999 Werner Koch <[email protected]>
Fri Jun 18 00:18:02 CEST 1999 Michael Roth <[email protected]>
* iobuf.c: file_filter() Detection of EOF on terminals
- improved/fixed (see Bug #21).
+ improved/fixed (see Bug #21).
Mon Jun 14 21:18:54 CEST 1999 Michael Roth <[email protected]>
diff --git a/util/ttyio.c b/util/ttyio.c
index e2c1f8496..8d0824aad 100644
--- a/util/ttyio.c
+++ b/util/ttyio.c
@@ -269,7 +269,7 @@ tty_print_utf8_string2( byte *p, size_t n, size_t max_n )
void
tty_print_utf8_string( byte *p, size_t n )
{
- tty_print_utf8_string( p, n, n )
+ tty_print_utf8_string2( p, n, n );
}