summaryrefslogtreecommitdiff
path: root/include/http_log.h
diff options
context:
space:
mode:
authorJeff Trawick <trawick@apache.org>2014-12-06 15:04:27 +0000
committerJeff Trawick <trawick@apache.org>2014-12-06 15:04:27 +0000
commit9a0f8c31adef3dcf020f285d5b9328c72ea57eda (patch)
tree01a68f5055f6d5fa4539ab608778c7fe9e076455 /include/http_log.h
parentc4bea1a2b6ec376fad574cdb08ecc226fa49a661 (diff)
downloadhttpd-9a0f8c31adef3dcf020f285d5b9328c72ea57eda.tar.gz
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
Diffstat (limited to 'include/http_log.h')
-rw-r--r--include/http_log.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/http_log.h b/include/http_log.h
index 60896f4538..cced5cc67d 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
/**