summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2009-01-09 20:43:24 -0800
committerAndrew <andrewarnott@gmail.com>2009-01-09 20:43:24 -0800
commita6f2f706640b337f7d9d1b7fc44127e3ba639ae6 (patch)
treed14d8fa2c4e5b5d39758b3dc921a30764f08e84f
parente07702077478303f00d5beee97cc7466f4d5c08e (diff)
downloadDotNetOpenAuth-a6f2f706640b337f7d9d1b7fc44127e3ba639ae6.zip
DotNetOpenAuth-a6f2f706640b337f7d9d1b7fc44127e3ba639ae6.tar.gz
DotNetOpenAuth-a6f2f706640b337f7d9d1b7fc44127e3ba639ae6.tar.bz2
Added missing string format arguments in Verify statement.
-rw-r--r--src/DotNetOpenAuth/OpenId/RelyingParty/PositiveAuthenticationResponse.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DotNetOpenAuth/OpenId/RelyingParty/PositiveAuthenticationResponse.cs b/src/DotNetOpenAuth/OpenId/RelyingParty/PositiveAuthenticationResponse.cs
index e24c1fc..92ab1a3 100644
--- a/src/DotNetOpenAuth/OpenId/RelyingParty/PositiveAuthenticationResponse.cs
+++ b/src/DotNetOpenAuth/OpenId/RelyingParty/PositiveAuthenticationResponse.cs
@@ -224,7 +224,7 @@ namespace DotNetOpenAuth.OpenId.RelyingParty {
// comes back in the assertion we can verify that it hasn't changed, without
// sending two copies of all the data in the request.
var discoveryResults = this.response.ClaimedIdentifier.Discover(this.relyingParty.WebRequestHandler);
- ErrorUtilities.VerifyProtocol(discoveryResults.Contains(this.endpoint), OpenIdStrings.IssuedAssertionFailsIdentifierDiscovery);
+ ErrorUtilities.VerifyProtocol(discoveryResults.Contains(this.endpoint), OpenIdStrings.IssuedAssertionFailsIdentifierDiscovery, this.endpoint, discoveryResults.ToStringDeferred(true));
}
}
}