diff options
author | Michael Paquier | 2019-07-22 01:01:50 +0000 |
---|---|---|
committer | Michael Paquier | 2019-07-22 01:01:50 +0000 |
commit | 23bccc823d434d9dcf3c12622fe260d9235baae2 (patch) | |
tree | a966eef34e7f33cf1ce9c729d3f423a5b5b9389d /contrib/pgcrypto/pgp-compress.c | |
parent | e1a0f6a983068675813074847e1d0d61bd37ac0e (diff) |
Fix inconsistencies and typos in the tree
This is numbered take 7, and addresses a set of issues with code
comments, variable names and unreferenced variables.
Author: Alexander Lakhin
Discussion: https://postgr.es/m/dff75442-2468-f74f-568c-6006e141062f@gmail.com
Diffstat (limited to 'contrib/pgcrypto/pgp-compress.c')
-rw-r--r-- | contrib/pgcrypto/pgp-compress.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/pgcrypto/pgp-compress.c b/contrib/pgcrypto/pgp-compress.c index eaeb221877f..2adaf2c8755 100644 --- a/contrib/pgcrypto/pgp-compress.c +++ b/contrib/pgcrypto/pgp-compress.c @@ -311,7 +311,7 @@ pgp_decompress_filter(PullFilter **res, PGP_Context *ctx, PullFilter *src) { return pullf_create(res, &decompress_filter, ctx, src); } -#else /* !HAVE_ZLIB */ +#else /* !HAVE_LIBZ */ int pgp_compress_filter(PushFilter **res, PGP_Context *ctx, PushFilter *dst) |