- Fix that for windows the module startup is called and sets up

the module-config.
This commit is contained in:
W.C.A. Wijngaards 2024-08-08 16:14:09 +02:00
parent 158c1defe3
commit 5abdd09095
2 changed files with 6 additions and 0 deletions

View File

@ -5,6 +5,8 @@
Anat Bremler-Barr, Shoham Danino and Yuval Shavitt (Tel-Aviv Anat Bremler-Barr, Shoham Danino and Yuval Shavitt (Tel-Aviv
University and Reichman University). University and Reichman University).
- Set version number to 1.21.0 for release. - Set version number to 1.21.0 for release.
- Fix that for windows the module startup is called and sets up
the module-config.
2 August 2024: Wouter 2 August 2024: Wouter
- Fix that alloc stats has strdup checks, it stops debuggers from - Fix that alloc stats has strdup checks, it stops debuggers from

View File

@ -352,6 +352,10 @@ service_init(int r, struct daemon** d, struct config_file** c)
daemon_apply_cfg(daemon, cfg); daemon_apply_cfg(daemon, cfg);
if(!r) report_status(SERVICE_START_PENDING, NO_ERROR, 2300); if(!r) report_status(SERVICE_START_PENDING, NO_ERROR, 2300);
if(!r) {
if(!daemon_privileged(daemon))
fatal_exit("could not do privileged setup");
}
if(!(daemon->rc = daemon_remote_create(cfg))) { if(!(daemon->rc = daemon_remote_create(cfg))) {
log_err("could not set up remote-control"); log_err("could not set up remote-control");
daemon_delete(daemon); daemon_delete(daemon);