From 68c647b17e00e5924fe10c7d3ea8e5aa5d44594c Mon Sep 17 00:00:00 2001 From: Scott Cantor Date: Sun, 15 May 2011 20:41:18 +0000 Subject: [PATCH] Fix issuer auto-extraction from token. --- src/shibresolver/resolver.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shibresolver/resolver.cpp b/src/shibresolver/resolver.cpp index 0c7ec52..79c3537 100644 --- a/src/shibresolver/resolver.cpp +++ b/src/shibresolver/resolver.cpp @@ -405,7 +405,7 @@ void RemotedResolver::resolve( log.warn("no metadata providers are configured"); } else { - if (!issuerstr.empty()) { + if (issuerstr.empty()) { // Attempt to locate an issuer based on input token. for (vector::const_iterator t = tokens.begin(); t!=tokens.end(); ++t) { const saml2::Assertion* assertion = dynamic_cast(*t); -- 2.1.4