Index: contrib/pgcrypto/pgp-compress.c
===================================================================
RCS file: /projects/cvsroot/pgsql/contrib/pgcrypto/pgp-compress.c,v
retrieving revision 1.2
diff -c -r1.2 pgp-compress.c
*** contrib/pgcrypto/pgp-compress.c	11 Jul 2005 15:07:59 -0000	1.2
--- contrib/pgcrypto/pgp-compress.c	18 Jul 2005 16:13:35 -0000
***************
*** 270,276 ****
  	dec->stream.avail_out = dec->buf_len;
  	dec->pos = dec->buf;
  
! 	// 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)
--- 270,276 ----
  	dec->stream.avail_out = dec->buf_len;
  	dec->pos = dec->buf;
  
! 	/* 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)
Index: contrib/pgcrypto/pgp-decrypt.c
===================================================================
RCS file: /projects/cvsroot/pgsql/contrib/pgcrypto/pgp-decrypt.c,v
retrieving revision 1.2
diff -c -r1.2 pgp-decrypt.c
*** contrib/pgcrypto/pgp-decrypt.c	11 Jul 2005 15:07:59 -0000	1.2
--- contrib/pgcrypto/pgp-decrypt.c	18 Jul 2005 16:13:36 -0000
***************
*** 339,345 ****
  	ctx->mdc_ctx = NULL;
  }
  
! // fixme: clarify
  static int mdc_finish(PGP_Context *ctx, PullFilter *src,
  		int len, uint8 **data_p)
  {
--- 339,345 ----
  	ctx->mdc_ctx = NULL;
  }
  
! /* fixme: clarify */
  static int mdc_finish(PGP_Context *ctx, PullFilter *src,
  		int len, uint8 **data_p)
  {
