Load the modules from the config file. Return True on success, * False on failure. */
| 535 | /* Load the modules from the config file. Return True on success, |
| 536 | * False on failure. */ |
| 537 | int lp_load(char *pszFname, int globals_only) |
| 538 | { |
| 539 | bInGlobalSection = True; |
| 540 | |
| 541 | reset_daemon_vars(); |
| 542 | |
| 543 | /* We get sections first, so have to start 'behind' to make up. */ |
| 544 | iSectionIndex = -1; |
| 545 | return pm_process(pszFname, globals_only ? NULL : do_section, do_parameter); |
| 546 | } |
| 547 | |
| 548 | BOOL set_dparams(int syntax_check_only) |
| 549 | { |
no test coverage detected