From: Jeff Trawick Date: Sat, 6 Dec 2014 15:04:27 +0000 (+0000) Subject: minor commentary and indentation fixes for ap_log_*data() X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b84e435b724e3d5e7d4e730587bfb2f5b8e31f44;p=thirdparty%2Fapache%2Fhttpd.git minor commentary and indentation fixes for ap_log_*data() git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1643538 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/include/http_log.h b/include/http_log.h index 60896f45383..cced5cc67d2 100644 --- a/include/http_log.h +++ b/include/http_log.h @@ -555,7 +555,7 @@ AP_DECLARE(void) ap_log_cserror_(const char *file, int line, int module_index, /* * The buffer logging functions, ap_log_data, ap_log_rdata, ap_log_cdata, * and ap_log_csdata log a buffer in printable and hex format. The exact - * format is controlled by processing flags, describe next. + * format is controlled by processing flags, described next. */ /** @@ -582,9 +582,9 @@ AP_DECLARE(void) ap_log_cserror_(const char *file, int line, int module_index, * @param flags Special processing flags like AP_LOG_DATA_SHOW_OFFSET * @note ap_log_data is implemented as a macro. * @note Use APLOG_MARK to fill out file, line, and module_index - * @note If a request_rec is available, use that with ap_log_rerror() + * @note If a request_rec is available, use that with ap_log_rdata() * in preference to calling this function. Otherwise, if a conn_rec is - * available, use that with ap_log_cerror() in preference to calling + * available, use that with ap_log_cdata() in preference to calling * this function. */ #ifdef DOXYGEN @@ -721,9 +721,9 @@ AP_DECLARE(void) ap_log_csdata(const char *file, int line, int module_index, #define ap_log_cdata ap_log_cdata_ #endif AP_DECLARE(void) ap_log_csdata_(const char *file, int line, int module_index, - int level, const conn_rec *c, const server_rec *s, - const char *label, const void *data, - apr_size_t len, unsigned int flags); + int level, const conn_rec *c, const server_rec *s, + const char *label, const void *data, + apr_size_t len, unsigned int flags); #endif /**