From: Rainer Jung Date: Sat, 11 Aug 2012 12:34:09 +0000 (+0000) Subject: bad header doxygen: ap_rflush does not return the number X-Git-Tag: 2.4.3~68 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8cf10497146abeb43af9929b961a7ed9cb95db8b;p=apache 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. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1371930 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/include/http_protocol.h b/include/http_protocol.h index d0d1f27ae2..fd95379daa 100644 --- a/include/http_protocol.h +++ b/include/http_protocol.h @@ -379,7 +379,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 */ AP_DECLARE(int) ap_rflush(request_rec *r);