summaryrefslogtreecommitdiffstats
path: root/auth_mellon_handler.c
diff options
context:
space:
mode:
authorolavmrk <olavmrk@a716ebb1-153a-0410-b759-cfb97c6a1b53>2014-04-25 09:11:35 +0000
committerolavmrk <olavmrk@a716ebb1-153a-0410-b759-cfb97c6a1b53>2014-04-25 09:11:35 +0000
commitb5ea9e240ef4851eb73c86926bbc9b31fc789e3d (patch)
treeee2a8a5f92c112f485c9f13c47f30664edc57733 /auth_mellon_handler.c
parent5866c803441f1940a573d0fa609533d561e8716c (diff)
downloadmod_auth_mellon-b5ea9e240ef4851eb73c86926bbc9b31fc789e3d.tar.gz
mod_auth_mellon-b5ea9e240ef4851eb73c86926bbc9b31fc789e3d.tar.xz
mod_auth_mellon-b5ea9e240ef4851eb73c86926bbc9b31fc789e3d.zip
Silence warning
The -Wunused-but-set-variable option will cause a warning that idp_public_key_file is set but never used when HAVE_lasso_server_load_metadata is defined. Signed-off-by: Simo Sorce <simo@redhat.com> git-svn-id: https://modmellon.googlecode.com/svn/trunk@225 a716ebb1-153a-0410-b759-cfb97c6a1b53
Diffstat (limited to 'auth_mellon_handler.c')
-rw-r--r--auth_mellon_handler.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/auth_mellon_handler.c b/auth_mellon_handler.c
index f93ba6e..1d42fd7 100644
--- a/auth_mellon_handler.c
+++ b/auth_mellon_handler.c
@@ -218,13 +218,16 @@ static char *am_generate_metadata(apr_pool_t *p, request_rec *r)
*/
static guint am_server_add_providers(am_dir_cfg_rec *cfg, request_rec *r)
{
- const char *idp_public_key_file;
apr_size_t index;
+#ifndef HAVE_lasso_server_load_metadata
+ const char *idp_public_key_file;
+
if (cfg->idp_metadata->nelts == 1)
idp_public_key_file = cfg->idp_public_key_file;
else
idp_public_key_file = NULL;
+#endif /* ! HAVE_lasso_server_load_metadata */
for (index = 0; index < cfg->idp_metadata->nelts; index++) {
const am_metadata_t *idp_metadata;