diff options
Diffstat (limited to 'g10')
-rw-r--r-- | g10/armor.c | 4 | ||||
-rw-r--r-- | g10/gpg.c | 8 | ||||
-rw-r--r-- | g10/import.c | 2 | ||||
-rw-r--r-- | g10/keygen.c | 4 | ||||
-rw-r--r-- | g10/pkclist.c | 2 |
5 files changed, 10 insertions, 10 deletions
diff --git a/g10/armor.c b/g10/armor.c index 7fb9a89ee..cc8096862 100644 --- a/g10/armor.c +++ b/g10/armor.c @@ -1440,7 +1440,7 @@ unarmor_pump (UnarmorPump x, int c) break; case STA_first_dash: /* just need for initialization */ x->pos = 0; - x->state = STA_compare_header; + x->state = STA_compare_header; /* fall through */ case STA_compare_header: if ( "-----BEGIN PGP SIGNATURE-----"[++x->pos] == c ) { if ( x->pos == 28 ) @@ -1521,7 +1521,7 @@ unarmor_pump (UnarmorPump x, int c) /* assume that we are at the next line */ x->state = STA_read_crc; x->pos = 0; - x->mycrc = 0; + x->mycrc = 0; /* fall through */ case STA_read_crc: if( (c = asctobin[c]) == 255 ) { rval = -1; /* ready */ @@ -4303,9 +4303,9 @@ main (int argc, char **argv) break; case aCheckKeys: - opt.check_sigs = 1; + opt.check_sigs = 1; /* fall through */ case aListSigs: - opt.list_sigs = 1; + opt.list_sigs = 1; /* fall through */ case aListKeys: sl = NULL; for( ; argc; argc--, argv++ ) @@ -4468,7 +4468,7 @@ main (int argc, char **argv) break; case aFastImport: - opt.import_options |= IMPORT_FAST; + opt.import_options |= IMPORT_FAST; /* fall through */ case aImport: import_keys (ctrl, argc? argv:NULL, argc, NULL, opt.import_options); break; @@ -4930,7 +4930,7 @@ main (int argc, char **argv) if (!opt.quiet) log_info (_("WARNING: no command supplied." " Trying to guess what you mean ...\n")); - /*FALLTHU*/ + /*FALLTHRU*/ case aListPackets: if( argc > 1 ) wrong_args("[filename]"); diff --git a/g10/import.c b/g10/import.c index a942c2e5f..d9d658b1c 100644 --- a/g10/import.c +++ b/g10/import.c @@ -868,7 +868,7 @@ read_block( IOBUF a, int with_meta, pkt = NULL; goto ready; } - in_cert = 1; + in_cert = 1; /* fall through */ default: x_default: if (in_cert && valid_keyblock_packet (pkt->pkttype)) diff --git a/g10/keygen.c b/g10/keygen.c index 2db37bf34..0dfed63a7 100644 --- a/g10/keygen.c +++ b/g10/keygen.c @@ -910,10 +910,10 @@ make_backsig (ctrl_t ctrl, PKT_signature *sig, PKT_public_key *pk, case 2: pktlen = (size_t)buf[mark++] << 24; pktlen |= buf[mark++] << 16; - + /* fall through */ case 1: pktlen |= buf[mark++] << 8; - + /* fall through */ case 0: pktlen |= buf[mark++]; } diff --git a/g10/pkclist.c b/g10/pkclist.c index e65da2574..ab024d9f2 100644 --- a/g10/pkclist.c +++ b/g10/pkclist.c @@ -632,7 +632,7 @@ check_signatures_trust (ctrl_t ctrl, PKT_signature *sig) log_info (_("trustlevel adjusted to FULL" " due to valid PKA info\n")); } - /* (fall through) */ + /* fall through */ case TRUST_FULLY: if (!okay) { |