diff options
author | Daniel Kahn Gillmor <dkg@fifthhorseman.net> | 2020-02-18 15:34:42 +0100 |
---|---|---|
committer | Daniel Kahn Gillmor <dkg@fifthhorseman.net> | 2020-02-19 00:07:46 +0100 |
commit | 0904b8ef348a52335c378bee6dc90a978885d66f (patch) | |
tree | aff1ea1d709d45724af04b7e985bca1284bdb2a0 /scd/command.c | |
parent | doc: Correction of typo in documentation of KEY_CONSIDERED (diff) | |
download | gnupg2-0904b8ef348a52335c378bee6dc90a978885d66f.tar.xz gnupg2-0904b8ef348a52335c378bee6dc90a978885d66f.zip |
Spelling cleanup.
No functional changes, just fixing minor spelling issues.
---
Most of these were identified from the command line by running:
codespell \
--ignore-words-list fpr,stati,keyserver,keyservers,asign,cas,iff,ifset \
--skip '*.po,ChangeLog*,help.*.txt,*.jpg,*.eps,*.pdf,*.png,*.gpg,*.asc' \
doc g13 g10 kbx agent artwork scd tests tools am common dirmngr sm \
NEWS README README.maint TODO
Signed-off-by: Daniel Kahn Gillmor <dkg@fifthhorseman.net>
Diffstat (limited to 'scd/command.c')
-rw-r--r-- | scd/command.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scd/command.c b/scd/command.c index c3ca93846..cd31218e8 100644 --- a/scd/command.c +++ b/scd/command.c @@ -226,7 +226,7 @@ open_card (ctrl_t ctrl) } /* Explicitly open a card for a specific use of APPTYPE or SERIALNO. - * If OPT_ALL ist set also add all possible additional apps. */ + * If OPT_ALL is set also add all possible additional apps. */ static gpg_error_t open_card_with_request (ctrl_t ctrl, const char *apptypestr, const char *serialno, @@ -1900,7 +1900,7 @@ static const char hlp_apdu[] = "Send an APDU to the current reader. This command bypasses the high\n" "level functions and sends the data directly to the card. HEXSTRING\n" "is expected to be a proper APDU. If HEXSTRING is not given no\n" - "commands are set to the card but the command will implictly check\n" + "commands are set to the card but the command will implicitly check\n" "whether the card is ready for use. \n" "\n" "Using the option \"--atr\" returns the ATR of the card as a status\n" @@ -2457,7 +2457,7 @@ pincache_put (ctrl_t ctrl, int slot, const char *appname, const char *pinref, /* Without an APPNAME etc or without a PIN we clear the cache and * thus there is no need to send the pin - even if the caller - * accidentially passed a pin. */ + * accidentally passed a pin. */ if (pin && slot != -1 && appname && pinref) { /* FIXME: Replace this by OCB mode and use the cache key as |