1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-11-04 20:38:50 +01:00

See ChangeLog: Fri Mar 3 11:29:29 CET 2000 Werner Koch

This commit is contained in:
Werner Koch 2000-03-03 10:28:05 +00:00
parent 97f82721df
commit c8efcabec4
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2000-03-02 15:51:04 Werner Koch (wk@habibti.gnupg.de)
* ttyio.c (tty_print_utf8_string): Oops.
Thu Mar 2 15:37:46 CET 2000 Werner Koch <wk@gnupg.de>
* 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 <wk@isil.d.shuttle.de>
Fri Jun 18 00:18:02 CEST 1999 Michael Roth <mroth@nessie.de>
* 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 <mroth@nessie.de>

View File

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