| 22 | } |
| 23 | |
| 24 | static struct command_result *get_ds_done(struct command *cmd, |
| 25 | const char *val, |
| 26 | char *arg) |
| 27 | { |
| 28 | if (!val) |
| 29 | val = "NOT FOUND"; |
| 30 | return command_success(cmd, json_out_obj(cmd, arg, val)); |
| 31 | } |
| 32 | |
| 33 | static struct command_result *get_ds_bin_done(struct command *cmd, |
| 34 | const u8 *val, |
nothing calls this directly
no test coverage detected