| 676 | } |
| 677 | |
| 678 | static int edit_header(void *v, const char *key, const char *val) |
| 679 | { |
| 680 | edit_do *ed = (edit_do *)v; |
| 681 | const char *repl = process_regexp(ed->hdr, val, ed->r); |
| 682 | if (repl == NULL) |
| 683 | return 0; |
| 684 | |
| 685 | apr_table_addn(ed->t, key, repl); |
| 686 | return 1; |
| 687 | } |
| 688 | |
| 689 | static int add_them_all(void *v, const char *key, const char *val) |
| 690 | { |
nothing calls this directly
no test coverage detected