| 466 | } |
| 467 | |
| 468 | static int fixup_bflag(void** param) |
| 469 | { |
| 470 | if ((*param = (void*)(long)fixup_flag(FLAG_TYPE_BRANCH, (str*)*param)) == |
| 471 | (void*)(long)NAMED_FLAG_ERROR) { |
| 472 | LM_ERR("Fixup flag failed!\n"); |
| 473 | return E_CFG; |
| 474 | } |
| 475 | |
| 476 | return 0; |
| 477 | } |
| 478 | |
| 479 | static int fixup_qvalue(void** param) |
| 480 | { |
nothing calls this directly
no test coverage detected