diff options
author | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2020-05-12 16:15:55 -0400 |
---|---|---|
committer | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2020-05-12 16:15:55 -0400 |
commit | 87c291e29d6bf403c6adefd81ddafa134c254a3e (patch) | |
tree | 6e3694f8ac34b1eaf127d1c05b6d567038cf2a95 | |
parent | 3e9744465dbe51822c7d76baca1f934d54ba9452 (diff) | |
download | postgresql-87c291e29d6bf403c6adefd81ddafa134c254a3e.tar.gz postgresql-87c291e29d6bf403c6adefd81ddafa134c254a3e.zip |
Fix straggler
contrib/pgcrypto did contain an unedited fall-through marker after all.
-rw-r--r-- | contrib/pgcrypto/pgp-info.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/pgcrypto/pgp-info.c b/contrib/pgcrypto/pgp-info.c index 83dc60486bd..990073c9dca 100644 --- a/contrib/pgcrypto/pgp-info.c +++ b/contrib/pgcrypto/pgp-info.c @@ -169,7 +169,7 @@ pgp_get_keyid(MBuf *pgp_data, char *dst) break; case PGP_PKT_SYMENCRYPTED_SESSKEY: got_symenc_key++; - /* fall through */ + /* FALLTHROUGH */ case PGP_PKT_SIGNATURE: case PGP_PKT_MARKER: case PGP_PKT_TRUST: |