]> git.pld-linux.org Git - packages/apache-mod_fastcgi.git/blob - apache-mod_fastcgi-apr1.patch
- update
[packages/apache-mod_fastcgi.git] / apache-mod_fastcgi-apr1.patch
1 diff -urN mod_fastcgi-2.4.2.org/fcgi_buf.c mod_fastcgi-2.4.2/fcgi_buf.c
2 --- mod_fastcgi-2.4.2.org/fcgi_buf.c    2004-10-06 20:30:46.335894544 +0200
3 +++ mod_fastcgi-2.4.2/fcgi_buf.c        2004-10-06 21:47:12.451426848 +0200
4 @@ -50,7 +50,7 @@
5  {
6      Buffer *buf;
7  
8 -    buf = (Buffer *)ap_pcalloc(p, sizeof(Buffer) + size);
9 +    buf = (Buffer *)apr_pcalloc(p, sizeof(Buffer) + size);
10      buf->size = size;
11      fcgi_buf_reset(buf);
12      return buf;
13 @@ -487,7 +487,7 @@
14          char *new_elts;
15          int new_nalloc = (arr->nalloc <= 0) ? n : arr->nelts + n;
16  
17 -        new_elts = ap_pcalloc(arr->pool, arr->elt_size * new_nalloc);
18 +        new_elts = apr_pcalloc(arr->pool, arr->elt_size * new_nalloc);
19          memcpy(new_elts, arr->elts, arr->nelts * arr->elt_size);
20  
21          arr->elts = new_elts;
22 diff -urN mod_fastcgi-2.4.2.org/fcgi_config.c mod_fastcgi-2.4.2/fcgi_config.c
23 --- mod_fastcgi-2.4.2.org/fcgi_config.c 2004-10-06 20:30:46.336894330 +0200
24 +++ mod_fastcgi-2.4.2/fcgi_config.c     2004-10-06 21:47:12.455425992 +0200
25 @@ -50,7 +50,7 @@
26      /* Convert port number */
27      tmp = (u_short) strtol(portStr, &cvptr, 10);
28      if (*cvptr != '\0' || tmp < 1 || tmp > USHRT_MAX)
29 -        return ap_pstrcat(p, "bad port number \"", portStr, "\"", NULL);
30 +        return apr_pstrcat(p, "bad port number \"", portStr, "\"", NULL);
31  
32      *port = (unsigned short) tmp;
33  
34 @@ -75,11 +75,11 @@
35      tmp = strtol(txt, &ptr, 10);
36  
37      if (*ptr != '\0') {
38 -        return ap_pstrcat(p, "\"", txt, "\" must be a positive integer", NULL);
39 +        return apr_pstrcat(p, "\"", txt, "\" must be a positive integer", NULL);
40         }
41      
42         if (tmp < min || tmp > USHRT_MAX) {
43 -        return ap_psprintf(p, "\"%u\" must be >= %u and < %u", *num, min, USHRT_MAX);
44 +        return apr_psprintf(p, "\"%u\" must be >= %u and < %u", *num, min, USHRT_MAX);
45         }
46  
47         *num = (u_short) tmp;
48 @@ -101,11 +101,11 @@
49  
50      if (*cp != '\0')
51      {
52 -        return ap_pstrcat(p, "can't parse ", "\"", val, "\"", NULL);
53 +        return apr_pstrcat(p, "can't parse ", "\"", val, "\"", NULL);
54      }
55      else if (*num < min)
56      {
57 -        return ap_psprintf(p, "\"%d\" must be >= %d", *num, min);
58 +        return apr_psprintf(p, "\"%d\" must be >= %d", *num, min);
59      }
60              
61      return NULL;
62 @@ -126,9 +126,9 @@
63      *num = (u_int)strtol(val, &ptr, 10);
64  
65      if (*ptr != '\0')
66 -        return ap_pstrcat(p, "\"", val, "\" must be a positive integer", NULL);
67 +        return apr_pstrcat(p, "\"", val, "\" must be a positive integer", NULL);
68      else if (*num < min)
69 -        return ap_psprintf(p, "\"%u\" must be >= %u", *num, min);
70 +        return apr_psprintf(p, "\"%u\" must be >= %u", *num, min);
71      return NULL;
72  }
73  
74 @@ -147,9 +147,9 @@
75      *num = (float) strtod(val, &ptr);
76  
77      if (*ptr != '\0')
78 -        return ap_pstrcat(p, "\"", val, "\" is not a floating point number", NULL);
79 +        return apr_pstrcat(p, "\"", val, "\" is not a floating point number", NULL);
80      if (*num < min || *num > max)
81 -        return ap_psprintf(p, "\"%f\" is not between %f and %f", *num, min, max);
82 +        return apr_psprintf(p, "\"%f\" is not between %f and %f", *num, min, max);
83      return NULL;
84  }
85  
86 @@ -160,7 +160,7 @@
87      }
88  
89      if (strchr(var, '=') == NULL) {
90 -        *(envp + *envc) = ap_pstrcat(p, var, "=", getenv(var), NULL);
91 +        *(envp + *envc) = apr_pstrcat(p, var, "=", getenv(var), NULL);
92      }
93      else {
94          *(envp + *envc) = var;
95 @@ -191,10 +191,10 @@
96      const char **header;
97  
98      if (!*array) {
99 -        *array = ap_make_array(p, 10, sizeof(char*));
100 +        *array = apr_array_make(p, 10, sizeof(char*));
101      }
102  
103 -    header = (const char **)ap_push_array(*array);
104 +    header = (const char **)apr_array_push(*array);
105      *header = ap_getword_conf(p, arg);
106  
107      return header ? NULL : "\"\"";
108 @@ -206,7 +206,7 @@
109  static const char *invalid_value(pool *p, const char *cmd, const char *id,
110          const char *opt, const char *err)
111  {
112 -    return ap_psprintf(p, "%s%s%s: invalid value for %s: %s",
113 +    return apr_psprintf(p, "%s%s%s: invalid value for %s: %s",
114                      cmd, id ? " " : "", id ? id : "",  opt, err);
115  }
116  
117 @@ -334,7 +334,7 @@
118          if (mkdir(path, S_IRWXU) != 0)
119  #endif
120          {
121 -            return ap_psprintf(tp,
122 +            return apr_psprintf(tp,
123                  "doesn't exist and can't be created: %s",
124                  strerror(errno));
125          }
126 @@ -342,7 +342,7 @@
127  #ifndef WIN32
128          /* If we're root, we're gonna setuid/setgid so we need to chown */
129          if (geteuid() == 0 && chown(path, ap_user_id, ap_group_id) != 0) {
130 -            return ap_psprintf(tp,
131 +            return apr_psprintf(tp,
132                  "can't chown() to the server (uid %ld, gid %ld): %s",
133                  (long)ap_user_id, (long)ap_group_id, strerror(errno));
134          }
135 @@ -361,7 +361,7 @@
136                            fcgi_user_id, fcgi_group_id);
137  #endif
138          if (err != NULL) {
139 -            return ap_psprintf(tp,
140 +            return apr_psprintf(tp,
141                  "access for server (uid %ld, gid %ld) failed: %s",
142                  (long)fcgi_user_id, (long)fcgi_group_id, err);
143          }
144 @@ -379,10 +379,10 @@
145      const char *err;
146      pool *tp;
147  
148 -    fcgi_dynamic_dir = ap_pstrcat(p, fcgi_socket_dir, "/dynamic", NULL);
149 +    fcgi_dynamic_dir = apr_pstrcat(p, fcgi_socket_dir, "/dynamic", NULL);
150  
151      if ((err = fcgi_config_make_dir(p, fcgi_dynamic_dir)))
152 -        return ap_psprintf(p, "can't create dynamic directory \"%s\": %s", fcgi_dynamic_dir, err);
153 +        return apr_psprintf(p, "can't create dynamic directory \"%s\": %s", fcgi_dynamic_dir, err);
154  
155      /* Don't step on a running server unless its OK. */
156      if (!wax)
157 @@ -419,8 +419,8 @@
158  
159          dp = ap_popendir(tp, fcgi_dynamic_dir);
160          if (dp == NULL) {
161 -            ap_destroy_pool(tp);
162 -            return ap_psprintf(p, "can't open dynamic directory \"%s\": %s",
163 +            apr_pool_destroy(tp);
164 +            return apr_psprintf(p, "can't open dynamic directory \"%s\": %s",
165                  fcgi_dynamic_dir, strerror(errno));
166          }
167  
168 @@ -431,13 +431,13 @@
169              if (strcmp(dirp->d_name, ".") == 0 || strcmp(dirp->d_name, "..") == 0)
170                  continue;
171  
172 -            unlink(ap_pstrcat(tp, fcgi_dynamic_dir, "/", dirp->d_name, NULL));
173 +            unlink(apr_pstrcat(tp, fcgi_dynamic_dir, "/", dirp->d_name, NULL));
174          }
175      }
176  
177  #endif /* !APACHE2 */
178  
179 -    ap_destroy_pool(tp);
180 +    apr_pool_destroy(tp);
181  
182      return NULL;
183  }
184 @@ -461,27 +461,27 @@
185      }
186  
187      if (fcgi_socket_dir) {
188 -        return ap_psprintf(tp, "%s %s: already defined as \"%s\"",
189 +        return apr_psprintf(tp, "%s %s: already defined as \"%s\"",
190                          name, arg, fcgi_socket_dir);
191      }
192  
193      err = fcgi_config_set_fcgi_uid_n_gid(1);
194      if (err != NULL)
195 -        return ap_psprintf(tp, "%s %s: %s", name, arg, err);
196 +        return apr_psprintf(tp, "%s %s: %s", name, arg, err);
197  
198      if (fcgi_servers != NULL) {
199 -        return ap_psprintf(tp,
200 +        return apr_psprintf(tp,
201              "The %s command must preceed static FastCGI server definitions",
202              name);
203      }
204  
205 -    arg_nc = ap_pstrdup(cmd->pool, arg);
206 +    arg_nc = apr_pstrdup(cmd->pool, arg);
207  
208  #ifndef WIN32
209  
210  #ifdef APACHE2
211      if (apr_filepath_merge(&arg_nc, "", arg, 0, cmd->pool))
212 -        return ap_psprintf(tp, "%s %s: invalid filepath", name, arg);
213 +        return apr_psprintf(tp, "%s %s: invalid filepath", name, arg);
214  #else
215      arg_nc = ap_os_canonical_filename(cmd->pool, arg_nc);
216  #endif
217 @@ -491,22 +491,22 @@
218  #else /* WIN32 */
219  
220         if (strncmp(arg_nc, "\\\\.\\pipe\\", 9) != 0)
221 -               return ap_psprintf(tp, "%s %s is invalid format",name, arg_nc);
222 +               return apr_psprintf(tp, "%s %s is invalid format",name, arg_nc);
223  
224  #endif
225  
226      fcgi_socket_dir = arg_nc;
227  
228  #ifdef WIN32
229 -    fcgi_dynamic_dir = ap_pstrcat(cmd->pool, fcgi_socket_dir, "dynamic", NULL);
230 +    fcgi_dynamic_dir = apr_pstrcat(cmd->pool, fcgi_socket_dir, "dynamic", NULL);
231  #else
232      err = fcgi_config_make_dir(tp, fcgi_socket_dir);
233      if (err != NULL)
234 -        return ap_psprintf(tp, "%s %s: %s", name, arg_nc, err);
235 +        return apr_psprintf(tp, "%s %s: %s", name, arg_nc, err);
236  
237      err = fcgi_config_make_dynamic_dir(cmd->pool, 0);
238      if (err != NULL)
239 -        return ap_psprintf(tp, "%s %s: %s", name, arg_nc, err);
240 +        return apr_psprintf(tp, "%s %s: %s", name, arg_nc, err);
241  #endif
242  
243      return NULL;
244 @@ -519,7 +519,7 @@
245  const char *fcgi_config_set_wrapper(cmd_parms *cmd, void *dummy, const char *arg)
246  {
247  #ifdef WIN32
248 -    return ap_psprintf(cmd->temp_pool, 
249 +    return apr_psprintf(cmd->temp_pool, 
250          "the %s directive is not supported on WIN", cmd->cmd->name);
251  #else
252  
253 @@ -536,16 +536,16 @@
254  
255      if (fcgi_wrapper)
256      {
257 -        return ap_psprintf(tp, "%s was already set to \"%s\"",
258 +        return apr_psprintf(tp, "%s was already set to \"%s\"",
259                             name, fcgi_wrapper);
260      }
261  
262      err = fcgi_config_set_fcgi_uid_n_gid(1);
263      if (err != NULL)
264 -        return ap_psprintf(tp, "%s %s: %s", name, arg, err);
265 +        return apr_psprintf(tp, "%s %s: %s", name, arg, err);
266  
267      if (fcgi_servers != NULL) {
268 -        return ap_psprintf(tp,
269 +        return apr_psprintf(tp,
270              "The %s command must preceed static FastCGI server definitions", name);
271      }
272  
273 @@ -562,7 +562,7 @@
274      {
275  #ifdef APACHE2
276          if (apr_filepath_merge(&wrapper, "", arg, 0, cmd->pool))
277 -            return ap_psprintf(tp, "%s %s: invalid filepath", name, arg);
278 +            return apr_psprintf(tp, "%s %s: invalid filepath", name, arg);
279  #else
280          wrapper = ap_os_canonical_filename(cmd->pool, (char *) arg);
281  #endif
282 @@ -573,7 +573,7 @@
283      err = fcgi_util_check_access(tp, wrapper, NULL, X_OK, fcgi_user_id, fcgi_group_id);
284      if (err) 
285      {
286 -        return ap_psprintf(tp, "%s: \"%s\" execute access for server "
287 +        return apr_psprintf(tp, "%s: \"%s\" execute access for server "
288                             "(uid %ld, gid %ld) failed: %s", name, wrapper,
289                             (long) fcgi_user_id, (long) fcgi_group_id, err);
290      }
291 @@ -596,7 +596,7 @@
292      const char *option, *err;
293  
294      /* Allocate temp storage for the array of initial environment variables */
295 -    char **envp = ap_pcalloc(tp, sizeof(char *) * (MAX_INIT_ENV_VARS + 3));
296 +    char **envp = apr_pcalloc(tp, sizeof(char *) * (MAX_INIT_ENV_VARS + 3));
297      unsigned int envc = 0;
298  
299  #ifdef WIN32
300 @@ -613,11 +613,11 @@
301          return "AppClass requires a pathname!?";
302  
303      if ((err = fcgi_config_set_fcgi_uid_n_gid(1)) != NULL)
304 -        return ap_psprintf(tp, "%s %s: %s", name, fs_path, err);
305 +        return apr_psprintf(tp, "%s %s: %s", name, fs_path, err);
306  
307  #ifdef APACHE2
308      if (apr_filepath_merge(&fs_path, "", fs_path, 0, p))
309 -        return ap_psprintf(tp, "%s %s: invalid filepath", name, fs_path);
310 +        return apr_psprintf(tp, "%s %s: invalid filepath", name, fs_path);
311  #else
312      fs_path = ap_os_canonical_filename(p, fs_path);
313  #endif
314 @@ -631,14 +631,14 @@
315                                 fcgi_util_get_server_gid(cmd->server));
316      if (s != NULL) {
317          if (fcgi_wrapper) {
318 -            return ap_psprintf(tp,
319 +            return apr_psprintf(tp,
320                  "%s: redefinition of a previously defined FastCGI "
321                  "server \"%s\" with uid=%ld and gid=%ld",
322                  name, fs_path, (long) fcgi_util_get_server_uid(cmd->server),
323                  (long) fcgi_util_get_server_gid(cmd->server));
324          }
325          else {
326 -            return ap_psprintf(tp,
327 +            return apr_psprintf(tp,
328                  "%s: redefinition of a previously defined FastCGI server \"%s\"",
329                  name, fs_path);
330          }
331 @@ -646,7 +646,7 @@
332  
333      err = fcgi_util_fs_is_path_ok(tp, fs_path, NULL);
334      if (err != NULL) {
335 -        return ap_psprintf(tp, "%s: \"%s\" %s", name, fs_path, err);
336 +        return apr_psprintf(tp, "%s: \"%s\" %s", name, fs_path, err);
337      }
338  
339      s = fcgi_util_fs_new(p);
340 @@ -672,7 +672,7 @@
341      
342      SetHandleInformation(mutex, HANDLE_FLAG_INHERIT, TRUE);
343  
344 -    s->mutex_env_string = ap_psprintf(p, "_FCGI_MUTEX_=%ld", mutex);
345 +    s->mutex_env_string = apr_psprintf(p, "_FCGI_MUTEX_=%ld", mutex);
346  
347  #endif
348  
349 @@ -730,7 +730,7 @@
350          }
351          else if (strcasecmp(option, "-user") == 0) {
352  #ifdef WIN32
353 -            return ap_psprintf(tp, 
354 +            return apr_psprintf(tp, 
355                  "%s %s: the -user option isn't supported on WIN", name, fs_path);
356  #else
357              s->user = ap_getword_conf(tp, &arg);
358 @@ -740,7 +740,7 @@
359          }
360          else if (strcasecmp(option, "-group") == 0) {
361  #ifdef WIN32
362 -            return ap_psprintf(tp, 
363 +            return apr_psprintf(tp, 
364                  "%s %s: the -group option isn't supported on WIN", name, fs_path);
365  #else
366              s->group = ap_getword_conf(tp, &arg);
367 @@ -749,7 +749,7 @@
368  #endif
369          }
370          else {
371 -            return ap_psprintf(tp, "%s %s: invalid option: %s", name, fs_path, option);
372 +            return apr_psprintf(tp, "%s %s: invalid option: %s", name, fs_path, option);
373          }
374      } /* while */
375  
376 @@ -758,12 +758,12 @@
377      {
378          if (s->group == NULL)
379          {
380 -            s->group = ap_psprintf(tp, "#%ld", fcgi_util_get_server_gid(cmd->server));
381 +            s->group = apr_psprintf(tp, "#%ld", fcgi_util_get_server_gid(cmd->server));
382          }
383  
384          if (s->user == NULL)
385          {
386 -            s->user = ap_psprintf(p, "#%ld", fcgi_util_get_server_uid(cmd->server)); 
387 +            s->user = apr_psprintf(p, "#%ld", fcgi_util_get_server_uid(cmd->server)); 
388          }
389  
390          s->uid = ap_uname2id(s->user);
391 @@ -777,19 +777,19 @@
392  
393      if ((err = fcgi_util_fs_set_uid_n_gid(p, s, s->uid, s->gid)))
394      {
395 -        return ap_psprintf(tp, 
396 +        return apr_psprintf(tp, 
397              "%s %s: invalid user or group: %s", name, fs_path, err);
398      }
399  #endif /* !WIN32 */
400  
401      if (s->socket_path != NULL && s->port != 0) {
402 -        return ap_psprintf(tp,
403 +        return apr_psprintf(tp,
404                  "%s %s: -port and -socket are mutually exclusive options",
405                  name, fs_path);
406      }
407  
408      /* Move env array to a surviving pool */
409 -    s->envp = (char **)ap_pcalloc(p, sizeof(char *) * (envc + 4));
410 +    s->envp = (char **)apr_pcalloc(p, sizeof(char *) * (envc + 4));
411      memcpy(s->envp, envp, sizeof(char *) * envc);
412  
413      /* Initialize process structs */
414 @@ -800,12 +800,12 @@
415          err = fcgi_util_socket_make_inet_addr(p, (struct sockaddr_in **)&s->socket_addr,
416                                  &s->socket_addr_len, NULL, s->port);
417          if (err != NULL)
418 -            return ap_psprintf(tp, "%s %s: %s", name, fs_path, err);
419 +            return apr_psprintf(tp, "%s %s: %s", name, fs_path, err);
420  #ifdef WIN32
421          err = fcgi_util_socket_make_inet_addr(p, (struct sockaddr_in **)&s->dest_addr,
422                                            &s->socket_addr_len, "localhost", s->port);
423          if (err != NULL)
424 -            return ap_psprintf(tp, "%s %s: %s", name, fs_path, err);
425 +            return apr_psprintf(tp, "%s %s: %s", name, fs_path, err);
426  #endif
427      } else {
428          if (s->socket_path == NULL)
429 @@ -825,7 +825,7 @@
430          err = fcgi_util_socket_make_domain_addr(p, (struct sockaddr_un **)&s->socket_addr,
431                                    &s->socket_addr_len, s->socket_path);
432          if (err != NULL)
433 -            return ap_psprintf(tp, "%s %s: %s", name, fs_path, err);
434 +            return apr_psprintf(tp, "%s %s: %s", name, fs_path, err);
435  #endif
436      }
437  
438 @@ -853,12 +853,12 @@
439      }
440  
441      if (!*fs_path) {
442 -        return ap_pstrcat(tp, name, " requires a path and either a -socket or -host option", NULL);
443 +        return apr_pstrcat(tp, name, " requires a path and either a -socket or -host option", NULL);
444      }
445  
446  #ifdef APACHE2
447      if (apr_filepath_merge(&fs_path, "", fs_path, 0, p))
448 -        return ap_psprintf(tp, "%s %s: invalid filepath", name, fs_path);
449 +        return apr_psprintf(tp, "%s %s: invalid filepath", name, fs_path);
450  #else
451      fs_path = ap_os_canonical_filename(p, fs_path);
452  #endif
453 @@ -873,7 +873,7 @@
454                                 fcgi_util_get_server_gid(cmd->server));
455      if (s != NULL) {
456          if (fcgi_wrapper) {
457 -            return ap_psprintf(tp,
458 +            return apr_psprintf(tp,
459                  "%s: redefinition of a previously defined class \"%s\" "
460                  "with uid=%ld and gid=%ld",
461                  name, fs_path, (long) fcgi_util_get_server_uid(cmd->server),
462 @@ -881,7 +881,7 @@
463          }
464          else 
465          {
466 -            return ap_psprintf(tp,
467 +            return apr_psprintf(tp,
468                  "%s: redefinition of previously defined class \"%s\"", name, fs_path);
469          }
470      }
471 @@ -920,7 +920,7 @@
472          }
473          else if (strcasecmp(option, "-user") == 0) {
474  #ifdef WIN32
475 -            return ap_psprintf(tp, 
476 +            return apr_psprintf(tp, 
477                  "%s %s: the -user option isn't supported on WIN", name, fs_path);
478  #else
479              s->user = ap_getword_conf(tp, &arg);
480 @@ -930,7 +930,7 @@
481          }
482          else if (strcasecmp(option, "-group") == 0) {
483  #ifdef WIN32
484 -            return ap_psprintf(tp, 
485 +            return apr_psprintf(tp, 
486                  "%s %s: the -group option isn't supported on WIN", name, fs_path);
487  #else
488              s->group = ap_getword_conf(tp, &arg);
489 @@ -939,7 +939,7 @@
490  #endif
491          }
492          else {
493 -            return ap_psprintf(tp, "%s %s: invalid option: %s", name, fs_path, option);
494 +            return apr_psprintf(tp, "%s %s: invalid option: %s", name, fs_path, option);
495          }
496      } /* while */
497  
498 @@ -949,12 +949,12 @@
499      {
500          if (s->group == NULL)
501          {
502 -            s->group = ap_psprintf(tp, "#%ld", fcgi_util_get_server_gid(cmd->server));
503 +            s->group = apr_psprintf(tp, "#%ld", fcgi_util_get_server_gid(cmd->server));
504          }
505  
506          if (s->user == NULL)
507          {
508 -            s->user = ap_psprintf(p, "#%ld", fcgi_util_get_server_uid(cmd->server));
509 +            s->user = apr_psprintf(p, "#%ld", fcgi_util_get_server_uid(cmd->server));
510          }
511  
512          s->uid = ap_uname2id(s->user);
513 @@ -968,19 +968,19 @@
514  
515      if ((err = fcgi_util_fs_set_uid_n_gid(p, s, s->uid, s->gid)))
516      {
517 -        return ap_psprintf(tp,
518 +        return apr_psprintf(tp,
519              "%s %s: invalid user or group: %s", name, fs_path, err);
520      }
521  #endif /* !WIN32 */
522  
523      /* Require one of -socket or -host, but not both */
524      if (s->socket_path != NULL && s->port != 0) {
525 -        return ap_psprintf(tp,
526 +        return apr_psprintf(tp,
527              "%s %s: -host and -socket are mutually exclusive options",
528              name, fs_path);
529      }
530      if (s->socket_path == NULL && s->port == 0) {
531 -        return ap_psprintf(tp,
532 +        return apr_psprintf(tp,
533              "%s %s: -socket or -host option missing", name, fs_path);
534      }
535  
536 @@ -989,7 +989,7 @@
537          err = fcgi_util_socket_make_inet_addr(p, (struct sockaddr_in **)&s->socket_addr,
538              &s->socket_addr_len, s->host, s->port);
539          if (err != NULL)
540 -            return ap_psprintf(tp, "%s %s: %s", name, fs_path, err);
541 +            return apr_psprintf(tp, "%s %s: %s", name, fs_path, err);
542      } else {
543  
544          if (fcgi_socket_dir == NULL)
545 @@ -1006,7 +1006,7 @@
546          err = fcgi_util_socket_make_domain_addr(p, (struct sockaddr_un **)&s->socket_addr,
547                                    &s->socket_addr_len, s->socket_path);
548          if (err != NULL)
549 -            return ap_psprintf(tp, "%s %s: %s", name, fs_path, err);
550 +            return apr_psprintf(tp, "%s %s: %s", name, fs_path, err);
551  #endif
552      }
553  
554 @@ -1037,7 +1037,7 @@
555  
556      /* Allocate temp storage for an initial environment */
557      unsigned int envc = 0;
558 -    char **envp = (char **)ap_pcalloc(tp, sizeof(char *) * (MAX_INIT_ENV_VARS + 3));
559 +    char **envp = (char **)apr_pcalloc(tp, sizeof(char *) * (MAX_INIT_ENV_VARS + 3));
560  
561      err = ap_check_cmd_context(cmd, GLOBAL_ONLY);
562      if (err)
563 @@ -1131,20 +1131,20 @@
564              dynamicFlush = TRUE;
565          }
566          else {
567 -            return ap_psprintf(tp, "%s: invalid option: %s", name, option);
568 +            return apr_psprintf(tp, "%s: invalid option: %s", name, option);
569          }
570      } /* while */
571  
572      if (dynamicProcessSlack >= dynamicMaxProcs + 1) {
573             /* the kill policy would work unexpectedly */
574 -       return ap_psprintf(tp, 
575 +       return apr_psprintf(tp, 
576              "%s: processSlack (%u) must be less than maxProcesses (%u) + 1", 
577                 name, dynamicProcessSlack, dynamicMaxProcs);
578      }
579  
580      /* Move env array to a surviving pool, leave 2 extra slots for 
581       * WIN32 _FCGI_MUTEX_ and _FCGI_SHUTDOWN_EVENT_ */
582 -    dynamicEnvp = (char **)ap_pcalloc(p, sizeof(char *) * (envc + 4));
583 +    dynamicEnvp = (char **)apr_pcalloc(p, sizeof(char *) * (envc + 4));
584      memcpy(dynamicEnvp, envp, sizeof(char *) * envc);
585  
586      return NULL;
587 @@ -1152,7 +1152,7 @@
588  
589  void *fcgi_config_create_dir_config(pool *p, char *dummy)
590  {
591 -    fcgi_dir_config *dir_config = ap_pcalloc(p, sizeof(fcgi_dir_config));
592 +    fcgi_dir_config *dir_config = apr_pcalloc(p, sizeof(fcgi_dir_config));
593  
594      dir_config->authenticator_options = FCGI_AUTHORITATIVE;
595      dir_config->authorizer_options = FCGI_AUTHORITATIVE;
596 @@ -1171,7 +1171,7 @@
597  
598  #ifdef APACHE2
599      if (apr_filepath_merge(&auth_server, "", fs_path, 0, cmd->pool))
600 -        return ap_psprintf(tp, "%s %s: invalid filepath", cmd->cmd->name, fs_path);
601 +        return apr_psprintf(tp, "%s %s: invalid filepath", cmd->cmd->name, fs_path);
602  #else
603      auth_server = (char *) ap_os_canonical_filename(cmd->pool, fs_path);
604  #endif
605 @@ -1184,11 +1184,11 @@
606      {
607          const char *err = fcgi_util_fs_is_path_ok(tp, auth_server, NULL);
608          if (err)
609 -            return ap_psprintf(tp, "%s: \"%s\" %s", cmd->cmd->name, auth_server, err);
610 +            return apr_psprintf(tp, "%s: \"%s\" %s", cmd->cmd->name, auth_server, err);
611      }
612  
613      if (compat && strcasecmp(compat, "-compat"))
614 -        return ap_psprintf(cmd->temp_pool, "%s: unknown option: \"%s\"", cmd->cmd->name, compat);
615 +        return apr_psprintf(cmd->temp_pool, "%s: unknown option: \"%s\"", cmd->cmd->name, compat);
616  
617      switch((int)cmd->info) {
618          case FCGI_AUTH_TYPE_AUTHENTICATOR:
619 diff -urN mod_fastcgi-2.4.2.org/fcgi_pm.c mod_fastcgi-2.4.2/fcgi_pm.c
620 --- mod_fastcgi-2.4.2.org/fcgi_pm.c     2004-10-06 20:30:46.337894116 +0200
621 +++ mod_fastcgi-2.4.2/fcgi_pm.c 2004-10-06 21:47:12.465423850 +0200
622 @@ -365,7 +365,7 @@
623      if (dnEnd == NULL) {
624          dirName = "./";
625      } else {
626 -        dirName = ap_pcalloc(fcgi_config_pool, dnEnd - fs->fs_path + 1);
627 +        dirName = apr_pcalloc(fcgi_config_pool, dnEnd - fs->fs_path + 1);
628          dirName = memcpy(dirName, fs->fs_path, dnEnd - fs->fs_path);
629      }
630      if (chdir(dirName) < 0) {
631 @@ -489,7 +489,7 @@
632      
633      SetHandleInformation(process->terminationEvent, HANDLE_FLAG_INHERIT, TRUE);
634      
635 -    termination_env_string = ap_psprintf(tp, 
636 +    termination_env_string = apr_psprintf(tp, 
637          "_FCGI_SHUTDOWN_EVENT_=%ld", process->terminationEvent);
638  
639      while (fs->envp[i]) i++;
640 @@ -576,7 +576,7 @@
641          fs->envp[i - 1] = NULL;
642      }
643  
644 -    ap_destroy_pool(tp);
645 +    apr_pool_destroy(tp);
646  
647      return proc.pid;
648  
649 @@ -614,7 +614,7 @@
650      }
651      SetHandleInformation(process->terminationEvent, HANDLE_FLAG_INHERIT, TRUE);
652      
653 -    termination_env_string = ap_psprintf(tp, 
654 +    termination_env_string = apr_psprintf(tp, 
655          "_FCGI_SHUTDOWN_EVENT_=%ld", process->terminationEvent);
656      
657      if (fs->socket_path) 
658 @@ -659,7 +659,7 @@
659              "FastCGI: %s is not executable; ensure interpreted scripts have "
660              "\"#!\" as their first line", 
661              fs->fs_path);
662 -        ap_destroy_pool(tp);
663 +        apr_pool_destroy(tp);
664          goto CLEANUP;
665      }
666  
667 @@ -668,9 +668,9 @@
668       * the arguments (if there are any).
669       * Build the command string to pass to CreateProcess. 
670       */
671 -    quoted_filename = ap_pstrcat(tp, "\"", fs->fs_path, "\"", NULL);
672 +    quoted_filename = apr_pstrcat(tp, "\"", fs->fs_path, "\"", NULL);
673      if (interpreter && *interpreter) {
674 -        pCommand = ap_pstrcat(tp, interpreter, " ", quoted_filename, NULL);
675 +        pCommand = apr_pstrcat(tp, interpreter, " ", quoted_filename, NULL);
676      }
677      else {
678          pCommand = quoted_filename;
679 @@ -704,7 +704,7 @@
680      iEnvBlockLen += strlen(termination_env_string) + 1;
681      iEnvBlockLen += strlen(fs->mutex_env_string) + 1;
682  
683 -    pEnvBlock = (char *) ap_pcalloc(tp, iEnvBlockLen);
684 +    pEnvBlock = (char *) apr_pcalloc(tp, iEnvBlockLen);
685  
686      i = 0;
687      pNext = pEnvBlock;
688 @@ -744,7 +744,7 @@
689          CloseHandle(listen_handle);
690      }
691  
692 -    ap_destroy_pool(tp);
693 +    apr_pool_destroy(tp);
694  
695      return pid;
696  
697 @@ -1071,10 +1071,10 @@
698              s->flush = dynamicFlush;
699              
700  #ifdef WIN32
701 -            s->mutex_env_string = ap_psprintf(sp, "_FCGI_MUTEX_=%ld", mutex);
702 -            s->fs_path = ap_pstrdup(sp, cjob->fs_path);
703 +            s->mutex_env_string = apr_psprintf(sp, "_FCGI_MUTEX_=%ld", mutex);
704 +            s->fs_path = apr_pstrdup(sp, cjob->fs_path);
705  #else
706 -            s->fs_path = ap_pstrdup(sp, execName);
707 +            s->fs_path = apr_pstrdup(sp, execName);
708  #endif
709              ap_getparents(s->fs_path);
710              ap_no2slash(s->fs_path);
711 @@ -1094,7 +1094,7 @@
712              s->socket_path = fcgi_util_socket_make_path_absolute(sp, s->socket_path, 1);
713  
714              /* Create sockaddr, prealloc it so it won't get created in tp */
715 -            s->socket_addr = ap_pcalloc(sp, sizeof(struct sockaddr_un));
716 +            s->socket_addr = apr_pcalloc(sp, sizeof(struct sockaddr_un));
717              err = fcgi_util_socket_make_domain_addr(tp, (struct sockaddr_un **)&s->socket_addr,
718                                            &s->socket_addr_len, s->socket_path);
719              if (err) {
720 @@ -1120,11 +1120,11 @@
721                          goto BagNewServer;
722                      }
723                      s->uid = pw->pw_uid;
724 -                    s->user = ap_pstrdup(sp, user);
725 +                    s->user = apr_pstrdup(sp, user);
726                      s->username = s->user;
727  
728                      s->gid = pw->pw_gid;
729 -                    s->group = ap_psprintf(sp, "%ld", (long)s->gid);
730 +                    s->group = apr_psprintf(sp, "%ld", (long)s->gid);
731                  }
732                  else {
733                      struct passwd *pw;
734 @@ -1137,11 +1137,11 @@
735                              execName, (long)s->uid);
736                          goto BagNewServer;
737                      }
738 -                    s->user = ap_pstrdup(sp, user);
739 -                    s->username = ap_pstrdup(sp, pw->pw_name);
740 +                    s->user = apr_pstrdup(sp, user);
741 +                    s->username = apr_pstrdup(sp, pw->pw_name);
742  
743                      s->gid = (gid_t)atol(group);
744 -                    s->group = ap_pstrdup(sp, group);
745 +                    s->group = apr_pstrdup(sp, group);
746                  }
747              }
748  #else
749 @@ -1340,7 +1340,7 @@
750          continue;
751  
752  BagNewServer:
753 -        if (sp) ap_destroy_pool(sp);
754 +        if (sp) apr_pool_destroy(sp);
755  
756  #ifdef WIN32
757      free(cjob->fs_path);
758 @@ -1362,7 +1362,7 @@
759      }
760  #endif
761  
762 -    ap_destroy_pool(tp);
763 +    apr_pool_destroy(tp);
764  }
765  
766  /*
767 diff -urN mod_fastcgi-2.4.2.org/fcgi_protocol.c mod_fastcgi-2.4.2/fcgi_protocol.c
768 --- mod_fastcgi-2.4.2.org/fcgi_protocol.c       2004-10-06 20:30:46.338893902 +0200
769 +++ mod_fastcgi-2.4.2/fcgi_protocol.c   2004-10-06 21:47:12.468423207 +0200
770 @@ -110,7 +110,7 @@
771      char *first, *last;
772  
773      if (r->the_request == NULL)
774 -        return (char *) ap_pcalloc(r->pool, 1);
775 +        return (char *) apr_pcalloc(r->pool, 1);
776  
777      first = r->the_request;    /* use the request-line */
778  
779 @@ -124,7 +124,7 @@
780      while (*last && !ap_isspace(*last))
781          ++last;                            /* end at next whitespace */
782  
783 -    return ap_pstrndup(r->pool, first, last - first);
784 +    return apr_pstrndup(r->pool, first, last - first);
785  }
786  
787  /* Based on Apache's ap_add_cgi_vars() in util_script.c.
788 @@ -135,18 +135,18 @@
789  {
790      table *e = r->subprocess_env;
791  
792 -    ap_table_setn(e, "GATEWAY_INTERFACE", "CGI/1.1");
793 -    ap_table_setn(e, "SERVER_PROTOCOL", r->protocol);
794 -    ap_table_setn(e, "REQUEST_METHOD", r->method);
795 -    ap_table_setn(e, "QUERY_STRING", r->args ? r->args : "");
796 -    ap_table_setn(e, "REQUEST_URI", apache_original_uri(r));
797 +    apr_table_setn(e, "GATEWAY_INTERFACE", "CGI/1.1");
798 +    apr_table_setn(e, "SERVER_PROTOCOL", r->protocol);
799 +    apr_table_setn(e, "REQUEST_METHOD", r->method);
800 +    apr_table_setn(e, "QUERY_STRING", r->args ? r->args : "");
801 +    apr_table_setn(e, "REQUEST_URI", apache_original_uri(r));
802  
803      /* The FastCGI spec precludes sending of CONTENT_LENGTH, PATH_INFO,
804       * PATH_TRANSLATED, and SCRIPT_NAME (for some reason?).  PATH_TRANSLATED we
805       * don't have, its the variable that causes Apache to break trying to set
806       * up (and thus the reason this fn exists vs. using ap_add_cgi_vars()). */
807      if (compat) {
808 -        ap_table_unset(e, "CONTENT_LENGTH");
809 +        apr_table_unset(e, "CONTENT_LENGTH");
810          return;
811      }
812  
813 @@ -155,17 +155,17 @@
814       * args and path_info of the original request, and not any that may have
815       * come with the script URI in the include command.  Ugh. */
816      if (!strcmp(r->protocol, "INCLUDED")) {
817 -        ap_table_setn(e, "SCRIPT_NAME", r->uri);
818 +        apr_table_setn(e, "SCRIPT_NAME", r->uri);
819          if (r->path_info && *r->path_info)
820 -            ap_table_setn(e, "PATH_INFO", r->path_info);
821 +            apr_table_setn(e, "PATH_INFO", r->path_info);
822      }
823      else if (!r->path_info || !*r->path_info)
824 -        ap_table_setn(e, "SCRIPT_NAME", r->uri);
825 +        apr_table_setn(e, "SCRIPT_NAME", r->uri);
826      else {
827          int path_info_start = ap_find_path_info(r->uri, r->path_info);
828  
829 -        ap_table_setn(e, "SCRIPT_NAME", ap_pstrndup(r->pool, r->uri, path_info_start));
830 -        ap_table_setn(e, "PATH_INFO", r->path_info);
831 +        apr_table_setn(e, "SCRIPT_NAME", apr_pstrndup(r->pool, r->uri, path_info_start));
832 +        apr_table_setn(e, "PATH_INFO", r->path_info);
833      }
834  }
835  
836 @@ -178,9 +178,9 @@
837          int i = ph->nelts;
838  
839          for ( ; i; --i, ++elt) {
840 -            const char *val = ap_table_get(fr->r->headers_in, *elt);
841 +            const char *val = apr_table_get(fr->r->headers_in, *elt);
842              if (val) {
843 -                ap_table_setn(fr->r->subprocess_env, *elt, val);
844 +                apr_table_setn(fr->r->subprocess_env, *elt, val);
845              }
846          }
847      }
848 @@ -373,7 +373,7 @@
849  
850                  if (fr->fs_stderr == NULL)
851                  {
852 -                    fr->fs_stderr = ap_palloc(p, FCGI_SERVER_MAX_STDERR_LINE_LEN + 1);
853 +                    fr->fs_stderr = apr_palloc(p, FCGI_SERVER_MAX_STDERR_LINE_LEN + 1);
854                  }
855  
856                  /* We're gonna consume all thats here */
857 diff -urN mod_fastcgi-2.4.2.org/fcgi_util.c mod_fastcgi-2.4.2/fcgi_util.c
858 --- mod_fastcgi-2.4.2.org/fcgi_util.c   2004-10-06 20:30:46.339893687 +0200
859 +++ mod_fastcgi-2.4.2/fcgi_util.c       2004-10-06 21:47:12.472422351 +0200
860 @@ -55,7 +55,7 @@
861  fcgi_util_socket_hash_filename(pool *p, const char *path,
862          const char *user, const char *group)
863  {
864 -    char *buf = ap_pstrcat(p, path, user, group, NULL);
865 +    char *buf = apr_pstrcat(p, path, user, group, NULL);
866  
867      /* Canonicalize the path (remove "//", ".", "..") */
868      ap_getparents(buf);
869 @@ -77,13 +77,13 @@
870      x = strlen(src1);
871  
872      if (x == 0) {
873 -           p = ap_pstrcat(a, "\\", src2, NULL);
874 +           p = apr_pstrcat(a, "\\", src2, NULL);
875      }
876      else if (src1[x - 1] != '\\' && src1[x - 1] != '/') {
877 -           p = ap_pstrcat(a, src1, "\\", src2, NULL);
878 +           p = apr_pstrcat(a, src1, "\\", src2, NULL);
879      }
880      else {
881 -           p = ap_pstrcat(a, src1, src2, NULL);
882 +           p = apr_pstrcat(a, src1, src2, NULL);
883      }
884  
885      q = p ;
886 @@ -137,12 +137,12 @@
887      int socket_pathLen = strlen(socket_path);
888  
889      if (socket_pathLen >= sizeof((*socket_addr)->sun_path)) {
890 -        return ap_pstrcat(p, "path \"", socket_path,
891 +        return apr_pstrcat(p, "path \"", socket_path,
892                         "\" is too long for a Domain socket", NULL);
893      }
894  
895      if (*socket_addr == NULL)
896 -        *socket_addr = ap_pcalloc(p, sizeof(struct sockaddr_un));
897 +        *socket_addr = apr_pcalloc(p, sizeof(struct sockaddr_un));
898      else
899          memset(*socket_addr, 0, sizeof(struct sockaddr_un));
900  
901 @@ -194,7 +194,7 @@
902          int *socket_addr_len, const char *host, unsigned short port)
903  {
904      if (*socket_addr == NULL)
905 -        *socket_addr = ap_pcalloc(p, sizeof(struct sockaddr_in));
906 +        *socket_addr = apr_pcalloc(p, sizeof(struct sockaddr_in));
907      else
908          memset(*socket_addr, 0, sizeof(struct sockaddr_in));
909  
910 @@ -204,7 +204,7 @@
911      /* Get an in_addr represention of the host */
912      if (host != NULL) {
913          if (convert_string_to_in_addr(host, &(*socket_addr)->sin_addr) != 1) {
914 -            return ap_pstrcat(p, "failed to resolve \"", host,
915 +            return apr_pstrcat(p, "failed to resolve \"", host,
916                             "\" to exactly one IP address", NULL);
917          }
918      } else {
919 @@ -227,7 +227,7 @@
920  
921      if (statBuf == NULL) {    
922          if (stat(path, &myStatBuf) < 0)
923 -            return ap_psprintf(tp, "stat(%s) failed: %s", path, strerror(errno));
924 +            return apr_psprintf(tp, "stat(%s) failed: %s", path, strerror(errno));
925          statBuf = &myStatBuf;
926      }
927      
928 @@ -311,7 +311,7 @@
929      fcgi_server *s;
930  
931      /* @@@ This should now be done in the loop below */
932 -    ap_cpystrn(path, ePath, FCGI_MAXPATH);
933 +    apr_cpystrn(path, ePath, FCGI_MAXPATH);
934      ap_no2slash(path);
935  
936      for (s = fcgi_servers; s != NULL; s = s->next) {
937 @@ -343,7 +343,7 @@
938      char path[FCGI_MAXPATH];
939      fcgi_server *s;
940  
941 -    ap_cpystrn(path, ePath, FCGI_MAXPATH);
942 +    apr_cpystrn(path, ePath, FCGI_MAXPATH);
943      ap_no2slash(path);
944      
945      for (s = fcgi_servers; s != NULL; s = s->next) {
946 @@ -367,21 +367,21 @@
947      const char *err;
948  
949      if (finfo == NULL) {
950 -        finfo = (struct stat *)ap_palloc(p, sizeof(struct stat));              
951 +        finfo = (struct stat *)apr_palloc(p, sizeof(struct stat));             
952          if (stat(fs_path, finfo) < 0)
953 -            return ap_psprintf(p, "stat(%s) failed: %s", fs_path, strerror(errno));
954 +            return apr_psprintf(p, "stat(%s) failed: %s", fs_path, strerror(errno));
955      }
956  
957      /* No Parse Header scripts aren't allowed.
958       * @@@ Well... we really could quite easily */ 
959      if (strncmp(strrchr(fs_path, '/'), "/nph-", 5) == 0)
960 -        return ap_psprintf(p, "NPH scripts cannot be run as FastCGI");
961 +        return apr_psprintf(p, "NPH scripts cannot be run as FastCGI");
962      
963      if (finfo->st_mode == 0) 
964 -        return ap_psprintf(p, "script not found or unable to stat()");
965 +        return apr_psprintf(p, "script not found or unable to stat()");
966  
967      if (S_ISDIR(finfo->st_mode)) 
968 -        return ap_psprintf(p, "script is a directory!");
969 +        return apr_psprintf(p, "script is a directory!");
970      
971      /* Let the wrapper determine what it can and can't execute */
972      if (! fcgi_wrapper)
973 @@ -392,7 +392,7 @@
974          err = fcgi_util_check_access(p, fs_path, finfo, X_OK, fcgi_user_id, fcgi_group_id);
975  #endif
976          if (err) {
977 -            return ap_psprintf(p,
978 +            return apr_psprintf(p,
979                  "access for server (uid %ld, gid %ld) not allowed: %s",
980                  (long)fcgi_user_id, (long)fcgi_group_id, err);
981          }
982 @@ -409,7 +409,7 @@
983  fcgi_server *
984  fcgi_util_fs_new(pool *p)
985  {
986 -    fcgi_server *s = (fcgi_server *) ap_pcalloc(p, sizeof(fcgi_server));
987 +    fcgi_server *s = (fcgi_server *) apr_pcalloc(p, sizeof(fcgi_server));
988  
989      /* Initialize anything who's init state is not zeroizzzzed */
990      s->listenQueueDepth = FCGI_DEFAULT_LISTEN_Q;
991 @@ -462,23 +462,23 @@
992      s->uid = uid;
993      pw = getpwuid(uid);
994      if (pw == NULL) {
995 -        return ap_psprintf(p,
996 +        return apr_psprintf(p,
997              "getpwuid() couldn't determine the username for uid '%ld', "
998              "you probably need to modify the User directive: %s",
999              (long)uid, strerror(errno));
1000      }
1001 -    s->user = ap_pstrdup(p, pw->pw_name);
1002 +    s->user = apr_pstrdup(p, pw->pw_name);
1003      s->username = s->user;
1004  
1005      s->gid = gid;
1006      gr = getgrgid(gid);
1007      if (gr == NULL) {
1008 -        return ap_psprintf(p,
1009 +        return apr_psprintf(p,
1010              "getgrgid() couldn't determine the group name for gid '%ld', "
1011              "you probably need to modify the Group directive: %s",
1012              (long)gid, strerror(errno));
1013      }
1014 -    s->group = ap_pstrdup(p, gr->gr_name);
1015 +    s->group = apr_pstrdup(p, gr->gr_name);
1016  
1017  #endif /* !WIN32 */
1018  
1019 @@ -492,7 +492,7 @@
1020  fcgi_util_fs_create_procs(pool *p, int num)
1021  {
1022      int i;
1023 -    ServerProcess *proc = (ServerProcess *)ap_pcalloc(p, sizeof(ServerProcess) * num);
1024 +    ServerProcess *proc = (ServerProcess *)apr_pcalloc(p, sizeof(ServerProcess) * num);
1025  
1026      for (i = 0; i < num; i++) {
1027  #ifdef WIN32
1028 diff -urN mod_fastcgi-2.4.2.org/mod_fastcgi.c mod_fastcgi-2.4.2/mod_fastcgi.c
1029 --- mod_fastcgi-2.4.2.org/mod_fastcgi.c 2004-10-06 20:30:46.355890260 +0200
1030 +++ mod_fastcgi-2.4.2/mod_fastcgi.c     2004-10-06 21:47:12.486419352 +0200
1031 @@ -267,7 +267,7 @@
1032  
1033      /* Register to reset to default values when the config pool is cleaned */
1034      ap_block_alarms();
1035 -    ap_register_cleanup(p, NULL, fcgi_config_reset_globals, ap_null_cleanup);
1036 +    apr_pool_cleanup_register(p, NULL, fcgi_config_reset_globals, apr_pool_cleanup_null);
1037      ap_unblock_alarms();
1038  
1039  #ifdef APACHE2
1040 @@ -285,7 +285,7 @@
1041  #ifdef WIN32
1042      if (fcgi_socket_dir == NULL)
1043          fcgi_socket_dir = DEFAULT_SOCK_DIR;
1044 -    fcgi_dynamic_dir = ap_pstrcat(p, fcgi_socket_dir, "dynamic", NULL);
1045 +    fcgi_dynamic_dir = apr_pstrcat(p, fcgi_socket_dir, "dynamic", NULL);
1046  #else
1047  
1048      if (fcgi_socket_dir == NULL)
1049 @@ -722,11 +722,11 @@
1050              }
1051              if (statusValue < 0) {
1052                  fr->parseHeader = SCAN_CGI_BAD_HEADER;
1053 -                return ap_psprintf(r->pool, "invalid Status '%s'", value);
1054 +                return apr_psprintf(r->pool, "invalid Status '%s'", value);
1055              }
1056              hasStatus = TRUE;
1057              r->status = statusValue;
1058 -            r->status_line = ap_pstrdup(r->pool, value);
1059 +            r->status_line = apr_pstrdup(r->pool, value);
1060              continue;
1061          }
1062  
1063 @@ -736,7 +736,7 @@
1064                      goto DuplicateNotAllowed;
1065                  }
1066                  hasContentType = TRUE;
1067 -                r->content_type = ap_pstrdup(r->pool, value);
1068 +                r->content_type = apr_pstrdup(r->pool, value);
1069                  continue;
1070              }
1071  
1072 @@ -750,11 +750,11 @@
1073              }
1074  
1075              /* If the script wants them merged, it can do it */
1076 -            ap_table_add(r->err_headers_out, name, value);
1077 +            apr_table_add(r->err_headers_out, name, value);
1078              continue;
1079          }
1080          else {
1081 -            ap_table_add(fr->authHeaders, name, value);
1082 +            apr_table_add(fr->authHeaders, name, value);
1083          }
1084      }
1085  
1086 @@ -765,7 +765,7 @@
1087       * Who responds, this handler or Apache?
1088       */
1089      if (hasLocation) {
1090 -        const char *location = ap_table_get(r->headers_out, "Location");
1091 +        const char *location = apr_table_get(r->headers_out, "Location");
1092          /*
1093           * Based on internal redirect handling in mod_cgi.c...
1094           *
1095 @@ -835,11 +835,11 @@
1096      if ((p = strpbrk(name, "\r\n")) != NULL)
1097          *p = '\0';
1098      fr->parseHeader = SCAN_CGI_BAD_HEADER;
1099 -    return ap_psprintf(r->pool, "malformed header '%s'", name);
1100 +    return apr_psprintf(r->pool, "malformed header '%s'", name);
1101  
1102  DuplicateNotAllowed:
1103      fr->parseHeader = SCAN_CGI_BAD_HEADER;
1104 -    return ap_psprintf(r->pool, "duplicate header '%s'", name);
1105 +    return apr_psprintf(r->pool, "duplicate header '%s'", name);
1106  }
1107  
1108  /*
1109 @@ -1019,9 +1019,9 @@
1110          char *end = strchr(r->uri + 2, '/');
1111  
1112          if (end)
1113 -            *user = memcpy(ap_pcalloc(r->pool, end - r->uri), r->uri + 1, end - r->uri - 1);
1114 +            *user = memcpy(apr_pcalloc(r->pool, end - r->uri), r->uri + 1, end - r->uri - 1);
1115          else
1116 -            *user = ap_pstrdup(r->pool, r->uri + 1);
1117 +            *user = apr_pstrdup(r->pool, r->uri + 1);
1118          *group = "-";
1119      }
1120      else {
1121 @@ -1030,8 +1030,8 @@
1122  
1123          get_request_identity(r, &uid, &gid);
1124  
1125 -        *user = ap_psprintf(r->pool, "%ld", (long) uid);
1126 -        *group = ap_psprintf(r->pool, "%ld", (long) gid);
1127 +        *user = apr_psprintf(r->pool, "%ld", (long) uid);
1128 +        *group = apr_psprintf(r->pool, "%ld", (long) gid);
1129      }
1130  }
1131  
1132 @@ -1225,7 +1225,7 @@
1133          {
1134              /* xxx this handle should live somewhere (see CloseHandle()s below too) */
1135              char * wait_npipe_mutex_name, * cp;
1136 -            wait_npipe_mutex_name = cp = ap_pstrdup(rp, socket_path);
1137 +            wait_npipe_mutex_name = cp = apr_pstrdup(rp, socket_path);
1138              while ((cp = strchr(cp, '\\'))) *cp = '/';
1139              
1140              wait_npipe_mutex = CreateMutex(NULL, FALSE, wait_npipe_mutex_name);
1141 @@ -2318,7 +2318,7 @@
1142      }
1143  
1144      ap_block_alarms();
1145 -    ap_register_cleanup(rp, (void *)fr, cleanup, ap_null_cleanup);
1146 +    apr_pool_cleanup_register(rp, (void *)fr, cleanup, apr_pool_cleanup_null);
1147      ap_unblock_alarms();
1148  
1149  #ifdef WIN32
1150 @@ -2422,7 +2422,7 @@
1151      const char *fs_path;
1152      pool * const p = r->pool;
1153      fcgi_server *fs;
1154 -    fcgi_request * const fr = (fcgi_request *)ap_pcalloc(p, sizeof(fcgi_request));
1155 +    fcgi_request * const fr = (fcgi_request *)apr_pcalloc(p, sizeof(fcgi_request));
1156      uid_t uid;
1157      gid_t gid;
1158  
1159 @@ -2450,7 +2450,7 @@
1160          else
1161  #endif
1162          {
1163 -            my_finfo = (struct stat *) ap_palloc(p, sizeof(struct stat));
1164 +            my_finfo = (struct stat *) apr_palloc(p, sizeof(struct stat));
1165              
1166              if (stat(fs_path, my_finfo) < 0) 
1167              {
1168 @@ -2476,7 +2476,7 @@
1169      fr->erBufPtr = fcgi_buf_new(p, sizeof(FCGI_EndRequestBody) + 1);
1170      fr->gotHeader = FALSE;
1171      fr->parseHeader = SCAN_CGI_READING_HEADERS;
1172 -    fr->header = ap_make_array(p, 1, 1);
1173 +    fr->header = apr_array_make(p, 1, 1);
1174      fr->fs_stderr = NULL;
1175      fr->r = r;
1176      fr->readingEndRequestBody = FALSE;
1177 @@ -2531,7 +2531,7 @@
1178   */
1179  static int apache_is_scriptaliased(request_rec *r)
1180  {
1181 -    const char *t = ap_table_get(r->notes, "alias-forced-type");
1182 +    const char *t = apr_table_get(r->notes, "alias-forced-type");
1183      return t && (!strcasecmp(t, "cgi-script"));
1184  }
1185  
1186 @@ -2554,9 +2554,9 @@
1187               */
1188              r->method = "GET";
1189              r->method_number = M_GET;
1190 -            ap_table_unset(r->headers_in, "Content-length");
1191 +            apr_table_unset(r->headers_in, "Content-length");
1192  
1193 -            ap_internal_redirect_handler(ap_table_get(r->headers_out, "Location"), r);
1194 +            ap_internal_redirect_handler(apr_table_get(r->headers_out, "Location"), r);
1195              return OK;
1196  
1197          case SCAN_CGI_SRV_REDIRECT:
1198 @@ -2612,21 +2612,21 @@
1199      if (strncasecmp(key, "Variable-", 9) == 0)
1200          key += 9;
1201  
1202 -    ap_table_setn(t, key, val);
1203 +    apr_table_setn(t, key, val);
1204      return 1;
1205  }
1206  
1207  static int post_process_auth_passed_compat_header(table *t, const char *key, const char * const val)
1208  {
1209      if (strncasecmp(key, "Variable-", 9) == 0)
1210 -        ap_table_setn(t, key + 9, val);
1211 +        apr_table_setn(t, key + 9, val);
1212  
1213      return 1;
1214  }
1215  
1216  static int post_process_auth_failed_header(table * const t, const char * const key, const char * const val)
1217  {
1218 -    ap_table_setn(t, key, val);
1219 +    apr_table_setn(t, key, val);
1220      return 1;
1221  }
1222  
1223 @@ -2639,16 +2639,16 @@
1224  
1225      if (passed) {
1226          if (fr->auth_compat) {
1227 -            ap_table_do((int (*)(void *, const char *, const char *))post_process_auth_passed_compat_header,
1228 +            apr_table_do((int (*)(void *, const char *, const char *))post_process_auth_passed_compat_header,
1229                   (void *)r->subprocess_env, fr->authHeaders, NULL);
1230          }
1231          else {
1232 -            ap_table_do((int (*)(void *, const char *, const char *))post_process_auth_passed_header,
1233 +            apr_table_do((int (*)(void *, const char *, const char *))post_process_auth_passed_header,
1234                   (void *)r->subprocess_env, fr->authHeaders, NULL);
1235          }
1236      }
1237      else {
1238 -        ap_table_do((int (*)(void *, const char *, const char *))post_process_auth_failed_header,
1239 +        apr_table_do((int (*)(void *, const char *, const char *))post_process_auth_failed_header,
1240               (void *)r->err_headers_out, fr->authHeaders, NULL);
1241      }
1242  
1243 @@ -2679,10 +2679,10 @@
1244      }
1245  
1246      /* Save the existing subprocess_env, because we're gonna muddy it up */
1247 -    fr->saved_subprocess_env = ap_copy_table(r->pool, r->subprocess_env);
1248 +    fr->saved_subprocess_env = apr_table_copy(r->pool, r->subprocess_env);
1249  
1250 -    ap_table_setn(r->subprocess_env, "REMOTE_PASSWD", password);
1251 -    ap_table_setn(r->subprocess_env, "FCGI_APACHE_ROLE", "AUTHENTICATOR");
1252 +    apr_table_setn(r->subprocess_env, "REMOTE_PASSWD", password);
1253 +    apr_table_setn(r->subprocess_env, "FCGI_APACHE_ROLE", "AUTHENTICATOR");
1254  
1255      /* The FastCGI Protocol doesn't differentiate authentication */
1256      fr->role = FCGI_AUTHORIZER;
1257 @@ -2697,7 +2697,7 @@
1258      post_process_auth(fr, authenticated);
1259  
1260      /* A redirect shouldn't be allowed during the authentication phase */
1261 -    if (ap_table_get(r->headers_out, "Location") != NULL) {
1262 +    if (apr_table_get(r->headers_out, "Location") != NULL) {
1263          ap_log_rerror(FCGI_LOG_ERR_NOERRNO, r,
1264              "FastCGI: FastCgiAuthenticator \"%s\" redirected (not allowed)",
1265              dir_config->authenticator);
1266 @@ -2746,9 +2746,9 @@
1267      }
1268  
1269      /* Save the existing subprocess_env, because we're gonna muddy it up */
1270 -    fr->saved_subprocess_env = ap_copy_table(r->pool, r->subprocess_env);
1271 +    fr->saved_subprocess_env = apr_table_copy(r->pool, r->subprocess_env);
1272  
1273 -    ap_table_setn(r->subprocess_env, "FCGI_APACHE_ROLE", "AUTHORIZER");
1274 +    apr_table_setn(r->subprocess_env, "FCGI_APACHE_ROLE", "AUTHORIZER");
1275  
1276      fr->role = FCGI_AUTHORIZER;
1277  
1278 @@ -2762,7 +2762,7 @@
1279      post_process_auth(fr, authorized);
1280  
1281      /* A redirect shouldn't be allowed during the authorization phase */
1282 -    if (ap_table_get(r->headers_out, "Location") != NULL) {
1283 +    if (apr_table_get(r->headers_out, "Location") != NULL) {
1284          ap_log_rerror(FCGI_LOG_ERR_NOERRNO, r,
1285              "FastCGI: FastCgiAuthorizer \"%s\" redirected (not allowed)",
1286              dir_config->authorizer);
1287 @@ -2806,9 +2806,9 @@
1288      }
1289  
1290      /* Save the existing subprocess_env, because we're gonna muddy it up */
1291 -    fr->saved_subprocess_env = ap_copy_table(r->pool, r->subprocess_env);
1292 +    fr->saved_subprocess_env = apr_table_copy(r->pool, r->subprocess_env);
1293  
1294 -    ap_table_setn(r->subprocess_env, "FCGI_APACHE_ROLE", "ACCESS_CHECKER");
1295 +    apr_table_setn(r->subprocess_env, "FCGI_APACHE_ROLE", "ACCESS_CHECKER");
1296  
1297      /* The FastCGI Protocol doesn't differentiate access control */
1298      fr->role = FCGI_AUTHORIZER;
1299 @@ -2823,7 +2823,7 @@
1300      post_process_auth(fr, access_allowed);
1301  
1302      /* A redirect shouldn't be allowed during the access check phase */
1303 -    if (ap_table_get(r->headers_out, "Location") != NULL) {
1304 +    if (apr_table_get(r->headers_out, "Location") != NULL) {
1305          ap_log_rerror(FCGI_LOG_ERR_NOERRNO, r,
1306              "FastCGI: FastCgiAccessChecker \"%s\" redirected (not allowed)",
1307              dir_config->access_checker);
This page took 0.180269 seconds and 4 git commands to generate.