From 1b823b2b7790a1e1b7974fcf11a4c48a28e70f37 Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Sun, 14 Mar 2010 02:28:56 +0200 Subject: [PATCH] auth: Fixed compiling config binary. --HG-- branch : HEAD --- src/auth/auth-settings.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/auth/auth-settings.c b/src/auth/auth-settings.c index 0eb2fc3f7a..620d1eb8f2 100644 --- a/src/auth/auth-settings.c +++ b/src/auth/auth-settings.c @@ -111,7 +111,7 @@ static const struct setting_define auth_passdb_setting_defines[] = { 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 @@ static const struct auth_passdb_settings auth_passdb_settings = { 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 @@ static const struct setting_define auth_userdb_setting_defines[] = { 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), -- 2.47.3