From: Rainer Jung Date: Sat, 11 Aug 2012 12:39:25 +0000 (+0000) Subject: bad header doxygen: ap_rflush does not return the number X-Git-Tag: 2.0.65~68 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ccdd5fcec193a08c498b48ae5ea60705087c9090;p=thirdparty%2Fapache%2Fhttpd.git 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. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@1371934 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/include/http_protocol.h b/include/http_protocol.h index 6287589ff0f..356188effb8 100644 --- a/include/http_protocol.h +++ b/include/http_protocol.h @@ -385,7 +385,7 @@ AP_DECLARE_NONSTD(int) ap_rprintf(request_rec *r, const char *fmt,...) /** * 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);