summaryrefslogtreecommitdiffstats
path: root/net/http
diff options
context:
space:
mode:
authorglider@chromium.org <glider@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-07-24 11:21:44 +0000
committerglider@chromium.org <glider@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-07-24 11:21:44 +0000
commit60c36363ab12558369659d97952770857876647c (patch)
tree3c22bbdcbc28091973a2d4d6fd4f84d100facfe1 /net/http
parent3fa7695ea228b1ad2eacbdefc1090ce90217749f (diff)
downloadchromium_src-60c36363ab12558369659d97952770857876647c.zip
chromium_src-60c36363ab12558369659d97952770857876647c.tar.gz
chromium_src-60c36363ab12558369659d97952770857876647c.tar.bz2
Fix copy-pasto in MockSSPILibrary::QuerySecurityPackageInfo and MockSSPILibrary::DeleteSecurityContext
BUG=NONE R=cbentzel@chromium.org Review URL: https://codereview.chromium.org/414443011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285191 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/http')
-rw-r--r--net/http/mock_sspi_library_win.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/http/mock_sspi_library_win.cc b/net/http/mock_sspi_library_win.cc
index c3d875c..7721853 100644
--- a/net/http/mock_sspi_library_win.cc
+++ b/net/http/mock_sspi_library_win.cc
@@ -73,14 +73,14 @@ SECURITY_STATUS MockSSPILibrary::QuerySecurityPackageInfo(
SECURITY_STATUS MockSSPILibrary::FreeCredentialsHandle(
PCredHandle phCredential) {
EXPECT_TRUE(phCredential->dwLower == ((ULONG_PTR) ((INT_PTR) 0)));
- EXPECT_TRUE(phCredential->dwLower == ((ULONG_PTR) ((INT_PTR) 0)));
+ EXPECT_TRUE(phCredential->dwUpper == ((ULONG_PTR) ((INT_PTR) 0)));
SecInvalidateHandle(phCredential);
return SEC_E_OK;
}
SECURITY_STATUS MockSSPILibrary::DeleteSecurityContext(PCtxtHandle phContext) {
EXPECT_TRUE(phContext->dwLower == ((ULONG_PTR) ((INT_PTR) 0)));
- EXPECT_TRUE(phContext->dwLower == ((ULONG_PTR) ((INT_PTR) 0)));
+ EXPECT_TRUE(phContext->dwUpper == ((ULONG_PTR) ((INT_PTR) 0)));
SecInvalidateHandle(phContext);
return SEC_E_OK;
}