| 895 | } |
| 896 | |
| 897 | static void destroy_plugin_opt(struct plugin_opt *opt) |
| 898 | { |
| 899 | /* does nothing when "name" registration replaced its double */ |
| 900 | opt_unregister(opt->name); |
| 901 | list_del(&opt->list); |
| 902 | } |
| 903 | |
| 904 | /* Add a single plugin option to the plugin as well as registering it with the |
| 905 | * command line options. */ |
nothing calls this directly
no test coverage detected