From: Timo Sirainen Date: Tue, 12 May 2009 19:27:00 +0000 (-0400) Subject: Compiler warning fix. X-Git-Tag: 2.0.alpha1~785 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9575316ab47b32f14c5f8527bbb9673b2827dee0;p=thirdparty%2Fdovecot%2Fcore.git Compiler warning fix. --HG-- branch : HEAD --- diff --git a/src/auth/auth-settings.c b/src/auth/auth-settings.c index eabae702a2..af198b27ec 100644 --- a/src/auth/auth-settings.c +++ b/src/auth/auth-settings.c @@ -176,7 +176,8 @@ struct setting_parser_info auth_root_setting_parser_info = { }; /* */ -static bool auth_settings_check(void *_set, pool_t pool, const char **error_r) +static bool auth_settings_check(void *_set, pool_t pool ATTR_UNUSED, + const char **error_r) { struct auth_settings *set = _set;