]> git.pld-linux.org Git - packages/apache-mod_fastcgi.git/blame - apache-mod_fastcgi-apr1.patch
- more
[packages/apache-mod_fastcgi.git] / apache-mod_fastcgi-apr1.patch
CommitLineData
4c3c1d65
AM
1diff -urN mod_fastcgi-2.4.2.org/mod_fastcgi.c mod_fastcgi-2.4.2/mod_fastcgi.c
2--- mod_fastcgi-2.4.2.org/mod_fastcgi.c 2004-10-06 20:30:46.355890260 +0200
be58b6e3 3+++ mod_fastcgi-2.4.2/mod_fastcgi.c 2004-10-06 20:38:52.593725208 +0200
4c3c1d65
AM
4@@ -267,7 +267,7 @@
5
6 /* Register to reset to default values when the config pool is cleaned */
7 ap_block_alarms();
8- ap_register_cleanup(p, NULL, fcgi_config_reset_globals, ap_null_cleanup);
9+ ap_register_cleanup(p, NULL, fcgi_config_reset_globals, apr_pool_cleanup_null);
10 ap_unblock_alarms();
11
12 #ifdef APACHE2
13@@ -2318,7 +2318,7 @@
14 }
15
16 ap_block_alarms();
17- ap_register_cleanup(rp, (void *)fr, cleanup, ap_null_cleanup);
18+ ap_register_cleanup(rp, (void *)fr, cleanup, apr_pool_cleanup_null);
19 ap_unblock_alarms();
20
21 #ifdef WIN32
be58b6e3
AM
22@@ -2639,16 +2639,16 @@
23
24 if (passed) {
25 if (fr->auth_compat) {
26- ap_table_do((int (*)(void *, const char *, const char *))post_process_auth_passed_compat_header,
27+ apr_table_do((int (*)(void *, const char *, const char *))post_process_auth_passed_compat_header,
28 (void *)r->subprocess_env, fr->authHeaders, NULL);
29 }
30 else {
31- ap_table_do((int (*)(void *, const char *, const char *))post_process_auth_passed_header,
32+ apr_table_do((int (*)(void *, const char *, const char *))post_process_auth_passed_header,
33 (void *)r->subprocess_env, fr->authHeaders, NULL);
34 }
35 }
36 else {
37- ap_table_do((int (*)(void *, const char *, const char *))post_process_auth_failed_header,
38+ apr_table_do((int (*)(void *, const char *, const char *))post_process_auth_failed_header,
39 (void *)r->err_headers_out, fr->authHeaders, NULL);
40 }
41
This page took 0.836155 seconds and 4 git commands to generate.