diff options
author | Tom Lane | 2005-07-18 16:35:06 +0000 |
---|---|---|
committer | Tom Lane | 2005-07-18 16:35:06 +0000 |
commit | fa4a8bcff2079138523f5dae87f2d08d08f7f332 (patch) | |
tree | 8ad6725e1c4ae350df6724d33e82dca876ca3576 | |
parent | 59e146859d830c2767c03ba606298fa742a2e387 (diff) |
Fix C++-style comments, per Rocco Altier.
-rw-r--r-- | contrib/pgcrypto/pgp-compress.c | 2 | ||||
-rw-r--r-- | contrib/pgcrypto/pgp-decrypt.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/contrib/pgcrypto/pgp-compress.c b/contrib/pgcrypto/pgp-compress.c index 5b4990863c..91d31190a4 100644 --- a/contrib/pgcrypto/pgp-compress.c +++ b/contrib/pgcrypto/pgp-compress.c @@ -270,7 +270,7 @@ restart: dec->stream.avail_out = dec->buf_len; dec->pos = dec->buf; - // Z_NO_FLUSH, Z_SYNC_FLUSH, + /* Z_NO_FLUSH, Z_SYNC_FLUSH */ flush = dec->stream.avail_in ? Z_SYNC_FLUSH : Z_FINISH; res = inflate(&dec->stream, flush); if (res != Z_OK && res != Z_STREAM_END) diff --git a/contrib/pgcrypto/pgp-decrypt.c b/contrib/pgcrypto/pgp-decrypt.c index 29fc0cce80..32f0dc279a 100644 --- a/contrib/pgcrypto/pgp-decrypt.c +++ b/contrib/pgcrypto/pgp-decrypt.c @@ -339,7 +339,7 @@ static void mdc_free(void *priv) ctx->mdc_ctx = NULL; } -// fixme: clarify +/* fixme: clarify */ static int mdc_finish(PGP_Context *ctx, PullFilter *src, int len, uint8 **data_p) { |