| 217 | } |
| 218 | |
| 219 | bool command_deprecated_in_named_ok(struct command *cmd, |
| 220 | const char *cmdname, |
| 221 | const char *param, |
| 222 | const char *depr_start, |
| 223 | const char *depr_end) |
| 224 | { |
| 225 | return deprecated_ok(command_deprecated_ok_flag(cmd), |
| 226 | param |
| 227 | ? tal_fmt(tmpctx, "%s.%s", cmdname, param) |
| 228 | : cmdname, |
| 229 | depr_start, depr_end, |
| 230 | cmd->plugin->beglist, |
| 231 | complain_deprecated, cmd); |
| 232 | } |
| 233 | |
| 234 | bool command_deprecated_in_ok(struct command *cmd, |
| 235 | const char *param, |
no test coverage detected