
rjung at apache
Aug 11, 2012, 5:39 AM
Post #1 of 1
(35 views)
Permalink
|
|
svn commit: r1371934 - /httpd/httpd/branches/2.0.x/include/http_protocol.h
|
|
Author: rjung Date: Sat Aug 11 12:39:25 2012 New Revision: 1371934 URL: http://svn.apache.org/viewvc?rev=1371934&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 r1368393 and r1368396 from trunk resp. r1371930 from 2.4.x and r1371931 from 2.2.x. Modified: httpd/httpd/branches/2.0.x/include/http_protocol.h Modified: httpd/httpd/branches/2.0.x/include/http_protocol.h URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.0.x/include/http_protocol.h?rev=1371934&r1=1371933&r2=1371934&view=diff ============================================================================== --- httpd/httpd/branches/2.0.x/include/http_protocol.h (original) +++ httpd/httpd/branches/2.0.x/include/http_protocol.h Sat Aug 11 12:39:25 2012 @@ -385,7 +385,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 * @deffunc int ap_rflush(request_rec *r) */ AP_DECLARE(int) ap_rflush(request_rec *r);
|