diff options
author | Daniel Kahn Gillmor <[email protected]> | 2016-08-02 02:19:16 +0000 |
---|---|---|
committer | Justus Winter <[email protected]> | 2016-08-03 14:54:41 +0000 |
commit | 436b28c23194fa77919967338d5a61a82d242153 (patch) | |
tree | b7bc7052a1459aed9743005df3762ef69567d125 /dirmngr/crlcache.c | |
parent | Fix spelling and grammar. (diff) | |
download | gnupg-436b28c23194fa77919967338d5a61a82d242153.tar.gz gnupg-436b28c23194fa77919967338d5a61a82d242153.zip |
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 <[email protected]>
Diffstat (limited to 'dirmngr/crlcache.c')
-rw-r--r-- | dirmngr/crlcache.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dirmngr/crlcache.c b/dirmngr/crlcache.c index 25ce7a662..af2a956d1 100644 --- a/dirmngr/crlcache.c +++ b/dirmngr/crlcache.c @@ -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 ) es_fputs( "affiliation_changed ", fp ), any = 1; if (reason & KSBA_CRLREASON_SUPERSEDED ) - es_fputs( "superseeded", fp ), any = 1; + es_fputs( "superseded", fp ), any = 1; if (reason & KSBA_CRLREASON_CESSATION_OF_OPERATION ) es_fputs( "cessation_of_operation", fp ), any = 1; if (reason & KSBA_CRLREASON_CERTIFICATE_HOLD ) |