diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2009-01-09 20:43:24 -0800 |
---|---|---|
committer | Andrew <andrewarnott@gmail.com> | 2009-01-09 20:43:24 -0800 |
commit | a6f2f706640b337f7d9d1b7fc44127e3ba639ae6 (patch) | |
tree | d14d8fa2c4e5b5d39758b3dc921a30764f08e84f | |
parent | e07702077478303f00d5beee97cc7466f4d5c08e (diff) | |
download | DotNetOpenAuth-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.cs | 2 |
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)); } } } |