diff options
Diffstat (limited to 'sysdep/unix/main.c')
-rw-r--r-- | sysdep/unix/main.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sysdep/unix/main.c b/sysdep/unix/main.c index 74827d98..01cc0c93 100644 --- a/sysdep/unix/main.c +++ b/sysdep/unix/main.c @@ -200,9 +200,11 @@ sysdep_preconfig(struct config *c) } int -sysdep_commit(struct config *new, struct config *old UNUSED) +sysdep_commit(struct config *new, struct config *old) { log_switch(0, &new->logfiles, new->syslog_name); + bird_thread_commit(new, old); + return 0; } |