(gpgsm_genkey): Remove the NEW from the certificate

request PEM header.  This is according to the Sphinx standard.
This commit is contained in:
Werner Koch 2004-10-22 12:30:52 +00:00
parent 5b12394f80
commit d230475aaf
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2004-10-22 Werner Koch <wk@g10code.com>
* certreqgen.c (gpgsm_genkey): Remove the NEW from the certificate
request PEM header. This is according to the Sphinx standard.
2004-10-08 Moritz Schulte <moritz@g10code.com>
* certchain.c (gpgsm_validate_chain): Do not use keydb_new() in

View File

@ -706,7 +706,7 @@ gpgsm_genkey (ctrl_t ctrl, int in_fd, FILE *out_fp)
return tmperr;
}
ctrl->pem_name = "NEW CERTIFICATE REQUEST";
ctrl->pem_name = "CERTIFICATE REQUEST";
rc = gpgsm_create_writer (&b64writer, ctrl, out_fp, &writer);
if (rc)
{