| 232 | } |
| 233 | |
| 234 | bool command_deprecated_in_ok(struct command *cmd, |
| 235 | const char *param, |
| 236 | const char *depr_start, |
| 237 | const char *depr_end) |
| 238 | { |
| 239 | return command_deprecated_in_named_ok(cmd, cmd->methodname, param, |
| 240 | depr_start, depr_end); |
| 241 | } |
| 242 | |
| 243 | bool command_deprecated_out_ok(struct command *cmd, |
| 244 | const char *fieldname, |
no test coverage detected