diff options
author | Daniel Kahn Gillmor <[email protected]> | 2016-09-15 18:21:15 +0000 |
---|---|---|
committer | NIIBE Yutaka <[email protected]> | 2016-09-17 07:00:37 +0000 |
commit | 0d67241e317b172a258a910c02d90639e2b08fce (patch) | |
tree | f1f68c8a94af20f1a3273da46633c7f8af750bc4 /sm | |
parent | move some file encodings to UTF-8 (diff) | |
download | gnupg-0d67241e317b172a258a910c02d90639e2b08fce.tar.gz gnupg-0d67241e317b172a258a910c02d90639e2b08fce.zip |
Fix more spelling
* NEWS, acinclude.m4, agent/command-ssh.c, agent/command.c,
agent/gpg-agent.c, agent/keyformat.txt, agent/protect-tool.c,
common/asshelp.c, common/b64enc.c, common/recsel.c, doc/DETAILS,
doc/HACKING, doc/Notes, doc/TRANSLATE, doc/dirmngr.texi,
doc/faq.org, doc/gpg-agent.texi, doc/gpg.texi, doc/gpgsm.texi,
doc/instguide.texi, g10/armor.c, g10/gpg.c, g10/keyedit.c,
g10/mainproc.c, g10/pkclist.c, g10/tofu.c, g13/sh-cmd.c,
g13/sh-dmcrypt.c, kbx/keybox-init.c, m4/pkg.m4, sm/call-dirmngr.c,
sm/gpgsm.c, tests/Makefile.am, tests/gpgscm/Manual.txt,
tests/gpgscm/scheme.c, tests/openpgp/gpgv-forged-keyring.scm,
tests/openpgp/multisig.test, tests/openpgp/verify.scm,
tests/pkits/README, tools/applygnupgdefaults,
tools/gpg-connect-agent.c, tools/mime-maker.c, tools/mime-parser.c:
minor spelling cleanup.
Signed-off-by: Daniel Kahn Gillmor <[email protected]>
Diffstat (limited to 'sm')
-rw-r--r-- | sm/call-dirmngr.c | 2 | ||||
-rw-r--r-- | sm/gpgsm.c | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/sm/call-dirmngr.c b/sm/call-dirmngr.c index 7e26c3ada..91f0c2f3c 100644 --- a/sm/call-dirmngr.c +++ b/sm/call-dirmngr.c @@ -220,7 +220,7 @@ prepare_dirmngr (ctrl_t ctrl, assuan_context_t ctx, gpg_error_t err) line[DIM (line) - 1] = 0; assuan_transact (ctx, line, NULL, NULL, NULL, NULL, NULL, NULL); - /* The code below is not required becuase we don't return an error. */ + /* The code below is not required because we don't return an error. */ /* err = [above call] */ /* if (gpg_err_code (err) == GPG_ERR_ASS_UNKNOWN_CMD) */ /* err = 0; /\* Allow the use of old dirmngr versions. *\/ */ diff --git a/sm/gpgsm.c b/sm/gpgsm.c index 9bb3053c2..6e12b7da9 100644 --- a/sm/gpgsm.c +++ b/sm/gpgsm.c @@ -1279,9 +1279,9 @@ main ( int argc, char **argv) case oStatusFD: ctrl.status_fd = pargs.r.ret_int; break; case oLoggerFD: log_set_fd (pargs.r.ret_int ); break; case oWithMD5Fingerprint: - opt.with_md5_fingerprint=1; /*fall thru*/ + opt.with_md5_fingerprint=1; /*fall through*/ case oWithFingerprint: - with_fpr=1; /*fall thru*/ + with_fpr=1; /*fall through*/ case aFingerprint: opt.fingerprint++; break; @@ -1360,7 +1360,7 @@ main ( int argc, char **argv) opt.def_recipient_self = 0; break; - case oWithKeyData: opt.with_key_data=1; /* fall thru */ + case oWithKeyData: opt.with_key_data=1; /* fall through */ case oWithColons: ctrl.with_colons = 1; break; case oWithSecret: ctrl.with_secret = 1; break; case oWithValidation: ctrl.with_validation=1; break; |