1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-09-24 15:31:41 +02:00

g10: Print the formatted text.

* g10/tofu.c (ask_about_binding): Print the formatted text, not the
unformatted text.

--
Signed-off-by: Neal H. Walfield <neal@g10code.com>
This commit is contained in:
Neal H. Walfield 2016-08-30 11:28:17 +02:00
parent 8dda861ad8
commit 0858f141a8

View File

@ -1393,7 +1393,7 @@ ask_about_binding (tofu_dbs_t dbs,
"call the person to make sure this new key is legitimate."; "call the person to make sure this new key is legitimate.";
} }
textbuf = format_text (text, 0, 72, 80); textbuf = format_text (text, 0, 72, 80);
es_fprintf (fp, "\n%s\n", text); es_fprintf (fp, "\n%s\n", textbuf);
xfree (textbuf); xfree (textbuf);
} }