dgaudet     99/06/30 21:07:22

  Modified:    mpm/src/main buff.c
  Log:
  uh that was an easy one to fix... I should know better than to post saying
  "I'll look at it later" ;)
  
  Revision  Changes    Path
  1.7       +1 -1      apache-2.0/mpm/src/main/buff.c
  
  Index: buff.c
  ===================================================================
  RCS file: /home/cvs/apache-2.0/mpm/src/main/buff.c,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- buff.c    1999/06/24 08:58:00     1.6
  +++ buff.c    1999/07/01 04:07:19     1.7
  @@ -554,7 +554,7 @@
       i = 0;
       total = 0;
       while (i < nvec) {
  -     rv = writev_with_errors(fb, vec, 2);
  +     rv = writev_with_errors(fb, vec + i, nvec - i);
        if (rv < 0) {
            return total ? -1 : total;
        }
  
  
  

Reply via email to