Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
fd040fc9
Commit
fd040fc9
authored
May 22, 2016
by
Andrey Gusev
Committed by
Alexandre Julliard
May 23, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
secur32/tests: Fix a typo in ok() messages.
Signed-off-by:
Andrey Gusev
<
andrey.goosev@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
7f64817e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
9 deletions
+9
-9
ntlm.c
dlls/secur32/tests/ntlm.c
+9
-9
No files found.
dlls/secur32/tests/ntlm.c
View file @
fd040fc9
...
...
@@ -327,7 +327,7 @@ static SECURITY_STATUS setupClient(SspiData *sspi_data, SEC_CHAR *provider)
trace
(
"AcquireCredentialsHandle() returned %s
\n
"
,
getSecError
(
ret
));
}
ok
(
ret
==
SEC_E_OK
,
"AcquireCredentialsHand
e() returned %s
\n
"
,
ok
(
ret
==
SEC_E_OK
,
"AcquireCredentialsHand
le() returned %s
\n
"
,
getSecError
(
ret
));
return
ret
;
...
...
@@ -355,7 +355,7 @@ static SECURITY_STATUS setupServer(SspiData *sspi_data, SEC_CHAR *provider)
trace
(
"AcquireCredentialsHandle() returned %s
\n
"
,
getSecError
(
ret
));
}
ok
(
ret
==
SEC_E_OK
,
"AcquireCredentialsHande() returned %s
\n
"
,
ok
(
ret
==
SEC_E_OK
,
"AcquireCredentialsHand
l
e() returned %s
\n
"
,
getSecError
(
ret
));
return
ret
;
...
...
@@ -1211,21 +1211,21 @@ static BOOL testAcquireCredentialsHandle(void)
ret
=
pAcquireCredentialsHandleA
(
NULL
,
sec_pkg_name
,
SECPKG_CRED_OUTBOUND
,
NULL
,
&
id
,
NULL
,
NULL
,
&
cred
,
&
ttl
);
ok
(
ret
==
SEC_E_OK
,
"AcquireCredentialsHande() returned %s
\n
"
,
ok
(
ret
==
SEC_E_OK
,
"AcquireCredentialsHand
l
e() returned %s
\n
"
,
getSecError
(
ret
));
pFreeCredentialsHandle
(
&
cred
);
id
.
DomainLength
=
0
;
ret
=
pAcquireCredentialsHandleA
(
NULL
,
sec_pkg_name
,
SECPKG_CRED_OUTBOUND
,
NULL
,
&
id
,
NULL
,
NULL
,
&
cred
,
&
ttl
);
ok
(
ret
==
SEC_E_OK
,
"AcquireCredentialsHande() returned %s
\n
"
,
ok
(
ret
==
SEC_E_OK
,
"AcquireCredentialsHand
l
e() returned %s
\n
"
,
getSecError
(
ret
));
pFreeCredentialsHandle
(
&
cred
);
id
.
Domain
=
NULL
;
ret
=
pAcquireCredentialsHandleA
(
NULL
,
sec_pkg_name
,
SECPKG_CRED_OUTBOUND
,
NULL
,
&
id
,
NULL
,
NULL
,
&
cred
,
&
ttl
);
ok
(
ret
==
SEC_E_OK
,
"AcquireCredentialsHande() returned %s
\n
"
,
ok
(
ret
==
SEC_E_OK
,
"AcquireCredentialsHand
l
e() returned %s
\n
"
,
getSecError
(
ret
));
pFreeCredentialsHandle
(
&
cred
);
...
...
@@ -1235,7 +1235,7 @@ static BOOL testAcquireCredentialsHandle(void)
id
.
User
=
NULL
;
ret
=
pAcquireCredentialsHandleA
(
NULL
,
sec_pkg_name
,
SECPKG_CRED_OUTBOUND
,
NULL
,
&
id
,
NULL
,
NULL
,
&
cred
,
&
ttl
);
ok
(
ret
==
SEC_E_OK
,
"AcquireCredentialsHande() returned %s
\n
"
,
ok
(
ret
==
SEC_E_OK
,
"AcquireCredentialsHand
l
e() returned %s
\n
"
,
getSecError
(
ret
));
pFreeCredentialsHandle
(
&
cred
);
...
...
@@ -1245,7 +1245,7 @@ static BOOL testAcquireCredentialsHandle(void)
id
.
PasswordLength
=
0
;
ret
=
pAcquireCredentialsHandleA
(
NULL
,
sec_pkg_name
,
SECPKG_CRED_OUTBOUND
,
NULL
,
&
id
,
NULL
,
NULL
,
&
cred
,
&
ttl
);
ok
(
ret
==
SEC_E_OK
,
"AcquireCredentialsHande() returned %s
\n
"
,
ok
(
ret
==
SEC_E_OK
,
"AcquireCredentialsHand
l
e() returned %s
\n
"
,
getSecError
(
ret
));
pFreeCredentialsHandle
(
&
cred
);
return
TRUE
;
...
...
@@ -1289,7 +1289,7 @@ static void test_cred_multiple_use(void)
ret
=
pAcquireCredentialsHandleA
(
NULL
,
sec_pkg_name
,
SECPKG_CRED_OUTBOUND
,
NULL
,
&
id
,
NULL
,
NULL
,
&
cred
,
&
ttl
);
ok
(
ret
==
SEC_E_OK
,
"AcquireCredentialsHande() returned %s
\n
"
,
ok
(
ret
==
SEC_E_OK
,
"AcquireCredentialsHand
l
e() returned %s
\n
"
,
getSecError
(
ret
));
buffer_desc
.
ulVersion
=
SECBUFFER_VERSION
;
...
...
@@ -1337,7 +1337,7 @@ static void test_null_auth_data(void)
status
=
pAcquireCredentialsHandleA
(
NULL
,
(
SEC_CHAR
*
)
"NTLM"
,
SECPKG_CRED_OUTBOUND
,
NULL
,
NULL
,
NULL
,
NULL
,
&
cred
,
&
ttl
);
ok
(
status
==
SEC_E_OK
,
"AcquireCredentialsHande() failed %s
\n
"
,
getSecError
(
status
));
ok
(
status
==
SEC_E_OK
,
"AcquireCredentialsHand
l
e() failed %s
\n
"
,
getSecError
(
status
));
buffers
[
0
].
cbBuffer
=
info
->
cbMaxToken
;
buffers
[
0
].
BufferType
=
SECBUFFER_TOKEN
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment