CVS update: /ccvs/src/

[email protected] 3 Jun 2005 16:27:23 -0000
Newsgroups gmane.comp.version-control.cvs.cvs
Message-ID <[email protected]>
User: dprice  
Date: 05/06/03 09:27:23

Modified:
 /ccvs/src/
  ChangeLog, zlib.c

Log:
 * zlib.c (compress_buffer_input): Update comment.

File Changes:

Directory: /ccvs/src/
=====================

File [changed]: ChangeLog
Url: https://ccvs.cvshome.org/source/browse/ccvs/src/ChangeLog?r1=1.3209&r2=1.3210
Delta lines:  +4 -0
-------------------
--- ChangeLog	3 Jun 2005 16:06:07 -0000	1.3209
+++ ChangeLog	3 Jun 2005 16:27:21 -0000	1.3210
@@ -1,5 +1,9 @@
 2005-06-03  Derek Price  <[email protected]>
 
+	* zlib.c (compress_buffer_input): Update comment.
+
+2005-06-03  Derek Price  <[email protected]>
+
 	* error.c (error): Correct spelling and grammar in comment.
 
 2005-06-03  Derek Price  <[email protected]>

File [changed]: zlib.c
Url: https://ccvs.cvshome.org/source/browse/ccvs/src/zlib.c?r1=1.29&r2=1.30
Delta lines:  +2 -3
-------------------
--- zlib.c	2 Jun 2005 17:53:00 -0000	1.29
+++ zlib.c	3 Jun 2005 16:27:21 -0000	1.30
@@ -209,9 +209,8 @@
 
 	/* If we have obtained NEED bytes, then return, unless NEED is
            zero and we haven't obtained anything at all.  If NEED is
-           zero, we will keep reading from the underlying buffer until
-           we either can't read anything, or we have managed to
-           inflate at least one byte.  */
+           zero, we will attempt at least one nonblocking read and see if
+	   we can inflate anything then.  */
 	if (sofar > 0 && sofar >= need)
 	    break;