| 477 | } |
| 478 | |
| 479 | static int parse_directives(char *name, char *val) |
| 480 | { |
| 481 | if (strcasecmp(name, "&include") == 0) |
| 482 | return include_config(val, 1); |
| 483 | if (strcasecmp(name, "&merge") == 0) |
| 484 | return include_config(val, 0); |
| 485 | rprintf(FLOG, "Unknown directive: %s.\n", name); |
| 486 | return 0; |
| 487 | } |
| 488 | |
| 489 | static int Parse( FILE *InFile, |
| 490 | BOOL (*sfunc)(char *), |
nothing calls this directly
no test coverage detected