DragonFly BSD
DragonFly commits List (threaded) for 2005-12
[Date Prev][Date Next]  [Thread Prev][Thread Next]  [Date Index][Thread Index]

cvs commit: src/gnu/usr.bin/cvs/cvs Makefile zlib.c.patch


From: Simon Schubert <corecode@xxxxxxxxxxxxxxxxxxxxxxx>
Date: Wed, 7 Dec 2005 05:42:58 -0800 (PST)

corecode    2005/12/07 05:42:58 PST

DragonFly src repository

  Modified files:
    gnu/usr.bin/cvs/cvs  Makefile 
  Added files:
    gnu/usr.bin/cvs/cvs  zlib.c.patch 
  Log:
  Fix a bug which was introduced in cvs-1.12.13.
  
  With running compression and ssh/rsh it could happen that the zlib
  layer would want to read $expected_bytes, which would block because
  $expected_bytes of course is a inflated quantity and can't be compared
  to the deflated size, except for
  $expected_bytes > 0 -> $expected_deflated_bytes > 0
  
  Restore old behaviour which only read one byte a time.
  
  Revision  Changes    Path
  1.10      +1 -1      src/gnu/usr.bin/cvs/cvs/Makefile


http://www.dragonflybsd.org/cvsweb/src/gnu/usr.bin/cvs/cvs/Makefile.diff?r1=1.9&r2=1.10&f=u



[Date Prev][Date Next]  [Thread Prev][Thread Next]  [Date Index][Thread Index]