dovecot-2.0: auth: Fixed compiling config binary.

dovecot at dovecot.org dovecot at dovecot.org
Sun Mar 14 02:29:05 EET 2010


details:   http://hg.dovecot.org/dovecot-2.0/rev/cb26518a7e51
changeset: 10905:cb26518a7e51
user:      Timo Sirainen <tss at iki.fi>
date:      Sun Mar 14 02:28:56 2010 +0200
description:
auth: Fixed compiling config binary.

diffstat:

 src/auth/auth-settings.c |  8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (38 lines):

diff -r 612db456c090 -r cb26518a7e51 src/auth/auth-settings.c
--- a/src/auth/auth-settings.c	Sat Mar 13 23:33:40 2010 +0200
+++ b/src/auth/auth-settings.c	Sun Mar 14 02:28:56 2010 +0200
@@ -111,7 +111,7 @@
 	SETTING_DEFINE_LIST_END
 };
 
-static const struct auth_passdb_settings auth_passdb_settings = {
+static const struct auth_passdb_settings auth_passdb_default_settings = {
 	.driver = "",
 	.args = "",
 	.deny = FALSE,
@@ -121,7 +121,7 @@
 
 const struct setting_parser_info auth_passdb_setting_parser_info = {
 	.defines = auth_passdb_setting_defines,
-	.defaults = &auth_passdb_settings,
+	.defaults = &auth_passdb_default_settings,
 
 	.type_offset = (size_t)-1,
 	.struct_size = sizeof(struct auth_passdb_settings),
@@ -143,14 +143,14 @@
 	SETTING_DEFINE_LIST_END
 };
 
-static const struct auth_userdb_settings auth_userdb_settings = {
+static const struct auth_userdb_settings auth_userdb_default_settings = {
 	.driver = "",
 	.args = ""
 };
 
 const struct setting_parser_info auth_userdb_setting_parser_info = {
 	.defines = auth_userdb_setting_defines,
-	.defaults = &auth_userdb_settings,
+	.defaults = &auth_userdb_default_settings,
 
 	.type_offset = (size_t)-1,
 	.struct_size = sizeof(struct auth_userdb_settings),


More information about the dovecot-cvs mailing list