diff options
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; |