| 497 | } |
| 498 | |
| 499 | static int fixup_branch_keep(void** param) |
| 500 | { |
| 501 | str *s = (str*)*param; |
| 502 | |
| 503 | /* default value is to discard */ |
| 504 | *param = (void*)(long)0; |
| 505 | if (!s) |
| 506 | return 0; |
| 507 | |
| 508 | if (str_strcasecmp(s, _str("keep")) == 0) |
| 509 | *param = (void*)(long)1; |
| 510 | return 0; |
| 511 | } |
| 512 | |
| 513 | static int fixup_branch_index(void** param) |
| 514 | { |
nothing calls this directly
no test coverage detected