| 697 | } |
| 698 | |
| 699 | static int fixup_format_string(void** param) |
| 700 | { |
| 701 | str *s = (str*)*param; |
| 702 | |
| 703 | if (pv_parse_format(s, (pv_elem_t**)param) < 0) { |
| 704 | LM_ERR("Failed to parse format string\n"); |
| 705 | return E_CFG; |
| 706 | } |
| 707 | |
| 708 | return 0; |
| 709 | } |
| 710 | |
| 711 | static int fixup_nt_string(void** param) |
| 712 | { |
nothing calls this directly
no test coverage detected