Commit 87c291e2 authored by Alvaro Herrera's avatar Alvaro Herrera

Fix straggler

contrib/pgcrypto did contain an unedited fall-through marker after all.
parent 3e974446
...@@ -169,7 +169,7 @@ pgp_get_keyid(MBuf *pgp_data, char *dst) ...@@ -169,7 +169,7 @@ pgp_get_keyid(MBuf *pgp_data, char *dst)
break; break;
case PGP_PKT_SYMENCRYPTED_SESSKEY: case PGP_PKT_SYMENCRYPTED_SESSKEY:
got_symenc_key++; got_symenc_key++;
/* fall through */ /* FALLTHROUGH */
case PGP_PKT_SIGNATURE: case PGP_PKT_SIGNATURE:
case PGP_PKT_MARKER: case PGP_PKT_MARKER:
case PGP_PKT_TRUST: case PGP_PKT_TRUST:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment