| 850 | } |
| 851 | |
| 852 | char *plugin_opt_flag_set(struct plugin_opt *popt) |
| 853 | { |
| 854 | /* A set flag is a true */ |
| 855 | tal_free(popt->values); |
| 856 | popt->values = tal_arr(popt, struct plugin_opt_value *, 1); |
| 857 | popt->values[0] = plugin_opt_value(popt->values, popt->type, "true"); |
| 858 | return NULL; |
| 859 | } |
| 860 | |
| 861 | char *plugin_opt_set(const char *arg, struct plugin_opt *popt) |
| 862 | { |
nothing calls this directly
no test coverage detected