diff options
author | Ruediger Pluem <rpluem@apache.org> | 2010-11-10 13:09:27 +0100 |
---|---|---|
committer | Ruediger Pluem <rpluem@apache.org> | 2010-11-10 13:09:27 +0100 |
commit | 38064564e91a34da75a9f575a6d779c0102f741e (patch) | |
tree | ac0139ab1c55474627d2c936ed354ced0f9ab2ee /include/http_config.h | |
parent | Fixed eol props. (diff) | |
download | apache2-38064564e91a34da75a9f575a6d779c0102f741e.tar.xz apache2-38064564e91a34da75a9f575a6d779c0102f741e.zip |
* Fix parameter name as new is a reserved word in C++ which makes compiling
of http_config.h with C++ impossible.
PR: 50243
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1033427 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/http_config.h')
-rw-r--r-- | include/http_config.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/http_config.h b/include/http_config.h index a2f6470613..47a90cc546 100644 --- a/include/http_config.h +++ b/include/http_config.h @@ -999,11 +999,11 @@ AP_DECLARE(struct ap_logconf *) ap_new_log_config(apr_pool_t *p, /** * Merge old ap_logconf into new ap_logconf. * old and new must have the same life time. - * @param old The ap_logconf to merge from - * @param new The ap_logconf to merge into + * @param old_conf The ap_logconf to merge from + * @param new_conf The ap_logconf to merge into */ -AP_DECLARE(void) ap_merge_log_config(const struct ap_logconf *old, - struct ap_logconf *new); +AP_DECLARE(void) ap_merge_log_config(const struct ap_logconf *old_conf, + struct ap_logconf *new_conf); /* For http_connection.c... */ /** |