diff src/auth/auth-settings.c @ 10905:cb26518a7e51 HEAD

auth: Fixed compiling config binary.
author Timo Sirainen <tss@iki.fi>
date Sun, 14 Mar 2010 02:28:56 +0200
parents 6e639833c3fc
children 858ad8aa7f8b
line wrap: on
line diff
--- 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),