| 596 | } |
| 597 | |
| 598 | static int fixup_blacklist(void** param) |
| 599 | { |
| 600 | str *s = (str*)*param; |
| 601 | |
| 602 | if (!str_strcasecmp(s, _str("all"))) { |
| 603 | *param = NULL; |
| 604 | return 0; |
| 605 | } else { |
| 606 | return fixup_blacklist_name(param); |
| 607 | } |
| 608 | } |
| 609 | |
| 610 | static int fixup_blacklist_free(void** param) |
| 611 | { |
nothing calls this directly
no test coverage detected