mirror of
git://git.gnupg.org/gnupg.git
synced 2024-12-22 10:19:57 +01:00
dirmngr: Emit correct spelling of "superseded".
* dirmngr/crlcache.c (list_one_crl_entry): Spell superseded correctly. * dirmngr/ocsp.c (ocsp_invalid): Likewise. This might break some tools which parse the existing output and expect misspellings, but i'm not sure there are many such tools, and we should use standardized orthography going forward. Signed-off-by: Daniel Kahn Gillmor <dkg@fifthhorseman.net>
This commit is contained in:
parent
cd45cf782b
commit
436b28c231
@ -2361,7 +2361,7 @@ list_one_crl_entry (crl_cache_t cache, crl_cache_entry_t e, estream_t fp)
|
|||||||
if (reason & KSBA_CRLREASON_AFFILIATION_CHANGED )
|
if (reason & KSBA_CRLREASON_AFFILIATION_CHANGED )
|
||||||
es_fputs( "affiliation_changed ", fp ), any = 1;
|
es_fputs( "affiliation_changed ", fp ), any = 1;
|
||||||
if (reason & KSBA_CRLREASON_SUPERSEDED )
|
if (reason & KSBA_CRLREASON_SUPERSEDED )
|
||||||
es_fputs( "superseeded", fp ), any = 1;
|
es_fputs( "superseded", fp ), any = 1;
|
||||||
if (reason & KSBA_CRLREASON_CESSATION_OF_OPERATION )
|
if (reason & KSBA_CRLREASON_CESSATION_OF_OPERATION )
|
||||||
es_fputs( "cessation_of_operation", fp ), any = 1;
|
es_fputs( "cessation_of_operation", fp ), any = 1;
|
||||||
if (reason & KSBA_CRLREASON_CERTIFICATE_HOLD )
|
if (reason & KSBA_CRLREASON_CERTIFICATE_HOLD )
|
||||||
|
@ -716,7 +716,7 @@ ocsp_isvalid (ctrl_t ctrl, ksba_cert_t cert, const char *cert_fpr,
|
|||||||
reason == KSBA_CRLREASON_CA_COMPROMISE? "CA compromise":
|
reason == KSBA_CRLREASON_CA_COMPROMISE? "CA compromise":
|
||||||
reason == KSBA_CRLREASON_AFFILIATION_CHANGED?
|
reason == KSBA_CRLREASON_AFFILIATION_CHANGED?
|
||||||
"affiliation changed":
|
"affiliation changed":
|
||||||
reason == KSBA_CRLREASON_SUPERSEDED? "superseeded":
|
reason == KSBA_CRLREASON_SUPERSEDED? "superseded":
|
||||||
reason == KSBA_CRLREASON_CESSATION_OF_OPERATION?
|
reason == KSBA_CRLREASON_CESSATION_OF_OPERATION?
|
||||||
"cessation of operation":
|
"cessation of operation":
|
||||||
reason == KSBA_CRLREASON_CERTIFICATE_HOLD?
|
reason == KSBA_CRLREASON_CERTIFICATE_HOLD?
|
||||||
|
Loading…
x
Reference in New Issue
Block a user