| 455 | } |
| 456 | |
| 457 | static int fixup_mflag(void** param) |
| 458 | { |
| 459 | if ((*param = (void*)(long)fixup_flag(FLAG_TYPE_MSG, (str*)*param)) == |
| 460 | (void*)(long)NAMED_FLAG_ERROR) { |
| 461 | LM_ERR("Fixup flag failed!\n"); |
| 462 | return E_CFG; |
| 463 | } |
| 464 | |
| 465 | return 0; |
| 466 | } |
| 467 | |
| 468 | static int fixup_bflag(void** param) |
| 469 | { |
nothing calls this directly
no test coverage detected