From: Timo Sirainen Date: Thu, 23 Oct 2008 15:27:20 +0000 (+0300) Subject: The new checkpassword code was still missing a bit to actually work. X-Git-Tag: 1.2.alpha4~172 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1e45d866c147e534958a4dbc092b1f25d8362aca;p=thirdparty%2Fdovecot%2Fcore.git The new checkpassword code was still missing a bit to actually work. --HG-- branch : HEAD --- diff --git a/src/auth/main.c b/src/auth/main.c index a9b4872b95..5281f5319f 100644 --- a/src/auth/main.c +++ b/src/auth/main.c @@ -7,6 +7,7 @@ #include "lib-signals.h" #include "restrict-access.h" #include "fd-close-on-exec.h" +#include "child-wait.h" #include "sql-api.h" #include "module-dir.h" #include "randgen.h" @@ -227,6 +228,7 @@ static void main_init(bool nodaemon) lib_signals_ignore(SIGHUP, TRUE); lib_signals_ignore(SIGUSR2, TRUE); + child_wait_init(); mech_init(); password_schemes_init(); auth_init(auth); @@ -287,6 +289,7 @@ static void main_deinit(void) sql_drivers_deinit(); random_deinit(); + child_wait_deinit(); lib_signals_deinit(); closelog(); }