1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-03 22:56:33 +02:00

Prepare for 1.5.0beta2

This commit is contained in:
Werner Koch 2011-03-08 12:56:45 +01:00
parent 327af90594
commit 444f2fe1cd
5 changed files with 69 additions and 15 deletions

View file

@ -393,9 +393,12 @@ gpgsm_gencertreq_tty (ctrl_t ctrl, estream_t output_stream)
}
es_fputs (result, fp);
es_rewind (fp);
tty_printf (_("Now creating %s. "
"This may take a while ...\n"),
selfsigned?_("self-signed certificate"):_("certificate request"));
if (selfsigned)
tty_printf ("%s", _("Now creating self-signed certificate. "));
else
tty_printf ("%s", _("Now creating certificate request. "));
tty_printf ("%s", _("This may take a while ...\n"));
{
int save_pem = ctrl->create_pem;
ctrl->create_pem = 1; /* Force creation of PEM. */