diff options
author | Michael Paquier | 2019-07-29 03:28:30 +0000 |
---|---|---|
committer | Michael Paquier | 2019-07-29 03:28:30 +0000 |
commit | eb43f3d19324d7e5376b1f57fc2e5c142a6b5f3d (patch) | |
tree | bf891accfbaff49a006960ebdfd4f1f8e12d4252 /contrib/pgcrypto/pgp-decrypt.c | |
parent | 7cce159349ccdb39ade07f869f08e4929ef2fe0b (diff) |
Fix inconsistencies and typos in the tree
This is numbered take 8, and addresses again a set of issues with code
comments, variable names and unreferenced variables.
Author: Alexander Lakhin
Discussion: https://postgr.es/m/b137b5eb-9c95-9c2f-586e-38aba7d59788@gmail.com
Diffstat (limited to 'contrib/pgcrypto/pgp-decrypt.c')
-rw-r--r-- | contrib/pgcrypto/pgp-decrypt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/pgcrypto/pgp-decrypt.c b/contrib/pgcrypto/pgp-decrypt.c index 7d8951cda41..eed0f6ad2d5 100644 --- a/contrib/pgcrypto/pgp-decrypt.c +++ b/contrib/pgcrypto/pgp-decrypt.c @@ -355,7 +355,7 @@ mdc_finish(PGP_Context *ctx, PullFilter *src, int len) if (len != 20) return PXE_PGP_CORRUPT_DATA; - /* mdc_read should not call md_update */ + /* mdc_read should not call px_md_update */ ctx->in_mdc_pkt = 1; /* read data */ |