dovecot-1.2: The new checkpassword code was still missing a bit ...

dovecot at dovecot.org dovecot at dovecot.org
Thu Oct 23 18:27:24 EEST 2008


details:   http://hg.dovecot.org/dovecot-1.2/rev/62e134c25a5e
changeset: 8317:62e134c25a5e
user:      Timo Sirainen <tss at iki.fi>
date:      Thu Oct 23 18:27:20 2008 +0300
description:
The new checkpassword code was still missing a bit to actually work.

diffstat:

1 file changed, 3 insertions(+)
src/auth/main.c |    3 +++

diffs (27 lines):

diff -r afdc27e0b665 -r 62e134c25a5e src/auth/main.c
--- a/src/auth/main.c	Wed Oct 22 21:11:47 2008 +0300
+++ b/src/auth/main.c	Thu Oct 23 18:27:20 2008 +0300
@@ -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();
 }


More information about the dovecot-cvs mailing list