Skip to content

Commit 9248113

Browse files
committed
*) mod_log_config: Fix LogFormat directive merging
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1922961 13f79535-47bb-0310-9956-ffa450edef68
1 parent fcd23ef commit 9248113

File tree

3 files changed

+3
-7
lines changed

3 files changed

+3
-7
lines changed

STATUS

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -157,12 +157,6 @@ RELEASE SHOWSTOPPERS:
157157
PATCHES ACCEPTED TO BACKPORT FROM TRUNK:
158158
[ start all new proposals below, under PATCHES PROPOSED. ]
159159

160-
*) mod_log_config: Fix LogFormat directive merging
161-
trunk patch: https://svn.apache.org/r1921305
162-
https://svn.apache.org/r1921306
163-
2.4.x patch: svn merge -c 1921305,1921306 ^/httpd/httpd/trunk .
164-
+1: jorton, covener, jim
165-
166160
*) mod_lua: Make r.ap_auth_type writable
167161
trunk patch: https://svn.apache.org/r1921260
168162
2.4.x patch: svn merge -c 1921260 ^/httpd/httpd/trunk .

changes-entries/pr65222.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
*) mod_log_config: Fix merging for the "LogFormat" directive.
2+
PR: 65222. [Michael Kaufmann <mail michael-kaufmann.ch>]

modules/loggers/mod_log_config.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1257,7 +1257,7 @@ static void *merge_config_log_state(apr_pool_t *p, void *basev, void *addv)
12571257
add->default_format_string = base->default_format_string;
12581258
add->default_format = base->default_format;
12591259
}
1260-
add->formats = apr_table_overlay(p, base->formats, add->formats);
1260+
add->formats = apr_table_overlay(p, add->formats, base->formats);
12611261

12621262
return add;
12631263
}

0 commit comments

Comments
 (0)