You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rj...@apache.org on 2012/08/11 14:34:10 UTC

svn commit: r1371930 - in /httpd/httpd/branches/2.4.x: ./ include/http_protocol.h

Author: rjung
Date: Sat Aug 11 12:34:09 2012
New Revision: 1371930

URL: http://svn.apache.org/viewvc?rev=1371930&view=rev
Log:
bad header doxygen: ap_rflush does not return the number
of bytes flushed, it returns 0 on success, -1 on error.

Should be CTR.

Backport of rr1368393 and r1368396 from trunk.

Modified:
    httpd/httpd/branches/2.4.x/   (props changed)
    httpd/httpd/branches/2.4.x/include/http_protocol.h

Propchange: httpd/httpd/branches/2.4.x/
------------------------------------------------------------------------------
  Merged /httpd/httpd/trunk:r1368393,1368396

Modified: httpd/httpd/branches/2.4.x/include/http_protocol.h
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/include/http_protocol.h?rev=1371930&r1=1371929&r2=1371930&view=diff
==============================================================================
--- httpd/httpd/branches/2.4.x/include/http_protocol.h (original)
+++ httpd/httpd/branches/2.4.x/include/http_protocol.h Sat Aug 11 12:34:09 2012
@@ -379,7 +379,7 @@ AP_DECLARE_NONSTD(int) ap_rprintf(reques
 /**
  * Flush all of the data for the current request to the client
  * @param r The current request
- * @return The number of bytes sent
+ * @return 0 on success, -1 if an error occurred
  */
 AP_DECLARE(int) ap_rflush(request_rec *r);