dovecot-2.0: bsdauth: Crashfix
dovecot at dovecot.org
dovecot at dovecot.org
Tue May 4 13:57:27 EEST 2010
details: http://hg.dovecot.org/dovecot-2.0/rev/fa77ca53ad6c
changeset: 11258:fa77ca53ad6c
user: Timo Sirainen <tss at iki.fi>
date: Tue May 04 13:57:26 2010 +0300
description:
bsdauth: Crashfix
diffstat:
src/auth/passdb-bsdauth.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diffs (12 lines):
diff -r c5e5f18e7685 -r fa77ca53ad6c src/auth/passdb-bsdauth.c
--- a/src/auth/passdb-bsdauth.c Tue May 04 04:12:34 2010 +0300
+++ b/src/auth/passdb-bsdauth.c Tue May 04 13:57:26 2010 +0300
@@ -57,7 +57,7 @@
module->default_pass_scheme = "PLAIN"; /* same reason as PAM */
module->blocking = TRUE;
- if (strcmp(module->args, "blocking=no") == 0)
+ if (strcmp(args, "blocking=no") == 0)
module->blocking = FALSE;
else if (strncmp(args, "cache_key=", 10) == 0)
module->cache_key = auth_cache_parse_key(pool, args + 10);
More information about the dovecot-cvs
mailing list