diff options
author | Werner Koch <wk@gnupg.org> | 2010-03-15 12:15:45 +0100 |
---|---|---|
committer | Werner Koch <wk@gnupg.org> | 2010-03-15 12:15:45 +0100 |
commit | fb2ba98963beea249474f5d6d7345cf9b4b7f570 (patch) | |
tree | 3c9b25d63f90a71caec5685fca945341d54bef9d /g10/trustdb.c | |
parent | Use a custom log handler for libassuan. (diff) | |
download | gnupg2-fb2ba98963beea249474f5d6d7345cf9b4b7f570.tar.xz gnupg2-fb2ba98963beea249474f5d6d7345cf9b4b7f570.zip |
Finished the bulk of changes to use estream in most places instead of
stdio.
Diffstat (limited to 'g10/trustdb.c')
-rw-r--r-- | g10/trustdb.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/g10/trustdb.c b/g10/trustdb.c index 2a1fc87bd..f1377aa1f 100644 --- a/g10/trustdb.c +++ b/g10/trustdb.c @@ -1376,7 +1376,8 @@ dump_key_array (int depth, struct key_array *keys) (node->flag & 4)? 'f': (node->flag & 2)? 'm': (node->flag & 1)? 'q':'-'); - print_string (stdout, node->pkt->pkt.user_id->name, len, ':'); + es_write_sanitized (es_stdout, node->pkt->pkt.user_id->name, + len, ":", NULL); putchar (':'); putchar ('\n'); } |