You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by tr...@apache.org on 2014/12/06 16:04:27 UTC

svn commit: r1643538 - /httpd/httpd/trunk/include/http_log.h

Author: trawick
Date: Sat Dec  6 15:04:27 2014
New Revision: 1643538

URL: http://svn.apache.org/r1643538
Log:
minor commentary and indentation fixes for ap_log_*data()

Modified:
    httpd/httpd/trunk/include/http_log.h

Modified: httpd/httpd/trunk/include/http_log.h
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/include/http_log.h?rev=1643538&r1=1643537&r2=1643538&view=diff
==============================================================================
--- httpd/httpd/trunk/include/http_log.h (original)
+++ httpd/httpd/trunk/include/http_log.h Sat Dec  6 15:04:27 2014
@@ -555,7 +555,7 @@ AP_DECLARE(void) ap_log_cserror_(const c
 /*
  * 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 c
  * @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 cha
 #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
 
 /**