| 436 | } |
| 437 | |
| 438 | static void duplicate_conf(struct conf_info *dst, const struct conf_info *src) |
| 439 | { |
| 440 | *dst = *src; |
| 441 | dst->name = xstrdup_or_null(src->name); |
| 442 | dst->key = xstrdup_or_null(src->key); |
| 443 | dst->command = xstrdup_or_null(src->command); |
| 444 | dst->cmd = xstrdup_or_null(src->cmd); |
| 445 | } |
| 446 | |
| 447 | static struct arg_item *get_conf_item(const char *name) |
| 448 | { |
no test coverage detected