You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by dg...@hyperreal.org on 1998/05/11 19:50:09 UTC

cvs commit: apache-1.3/src/include ap.h

dgaudet     98/05/11 10:50:09

  Modified:    src/include ap.h
  Log:
  fix comment about curpos == endpos
  
  Revision  Changes    Path
  1.15      +1 -1      apache-1.3/src/include/ap.h
  
  Index: ap.h
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/include/ap.h,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -r1.14 -r1.15
  --- ap.h	1998/05/06 19:49:48	1.14
  +++ ap.h	1998/05/11 17:50:09	1.15
  @@ -117,7 +117,7 @@
    * appropriate, re-initialize curpos and endpos, and return 0.
    *
    * Note that flush_func is only invoked as a result of attempting to
  - * write another byte at curpos when curpos == endpos.  So for
  + * write another byte at curpos when curpos >= endpos.  So for
    * example, it's possible when the output exactly matches the buffer
    * space available that curpos == endpos will be true when
    * ap_vformatter returns.