Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
b432e119
Commit
b432e119
authored
Jun 19, 2006
by
Kai Blin
Committed by
Alexandre Julliard
Jun 19, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
secur32: Remove unneeded function from the Negotiate provider.
parent
ccfa76d1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
28 deletions
+4
-28
negotiate.c
dlls/secur32/negotiate.c
+4
-28
No files found.
dlls/secur32/negotiate.c
View file @
b432e119
...
...
@@ -93,28 +93,6 @@ static SECURITY_STATUS SEC_ENTRY nego_QueryCredentialsAttributesW(
return
ret
;
}
static
SECURITY_STATUS
nego_AcquireCredentialsHandle
(
ULONG
fCredentialsUse
,
PCredHandle
phCredential
,
PTimeStamp
ptsExpiry
)
{
SECURITY_STATUS
ret
;
if
(
fCredentialsUse
==
SECPKG_CRED_BOTH
)
{
ret
=
SEC_E_NO_CREDENTIALS
;
}
else
{
/* Ok, just store the direction like schannel does for now.
* FIXME: This should probably do something useful later on
*/
phCredential
->
dwUpper
=
fCredentialsUse
;
/* Same here, shamelessly stolen from schannel.c */
if
(
ptsExpiry
)
ptsExpiry
->
QuadPart
=
0
;
ret
=
SEC_E_OK
;
}
return
ret
;
}
/***********************************************************************
* AcquireCredentialsHandleA
...
...
@@ -124,11 +102,10 @@ static SECURITY_STATUS SEC_ENTRY nego_AcquireCredentialsHandleA(
PLUID
pLogonID
,
PVOID
pAuthData
,
SEC_GET_KEY_FN
pGetKeyFn
,
PVOID
pGetKeyArgument
,
PCredHandle
phCredential
,
PTimeStamp
ptsExpiry
)
{
TRACE
(
"(%s, %s, 0x%08lx, %p, %p, %p, %p, %p, %p)
\n
"
,
TRACE
(
"(%s, %s, 0x%08lx, %p, %p, %p, %p, %p, %p)
stub
\n
"
,
debugstr_a
(
pszPrincipal
),
debugstr_a
(
pszPackage
),
fCredentialUse
,
pLogonID
,
pAuthData
,
pGetKeyFn
,
pGetKeyArgument
,
phCredential
,
ptsExpiry
);
return
nego_AcquireCredentialsHandle
(
fCredentialUse
,
phCredential
,
ptsExpiry
);
return
SEC_E_UNSUPPORTED_FUNCTION
;
}
/***********************************************************************
...
...
@@ -139,11 +116,10 @@ static SECURITY_STATUS SEC_ENTRY nego_AcquireCredentialsHandleW(
PLUID
pLogonID
,
PVOID
pAuthData
,
SEC_GET_KEY_FN
pGetKeyFn
,
PVOID
pGetKeyArgument
,
PCredHandle
phCredential
,
PTimeStamp
ptsExpiry
)
{
TRACE
(
"(%s, %s, 0x%08lx, %p, %p, %p, %p, %p, %p)
\n
"
,
TRACE
(
"(%s, %s, 0x%08lx, %p, %p, %p, %p, %p, %p)
stub
\n
"
,
debugstr_w
(
pszPrincipal
),
debugstr_w
(
pszPackage
),
fCredentialUse
,
pLogonID
,
pAuthData
,
pGetKeyFn
,
pGetKeyArgument
,
phCredential
,
ptsExpiry
);
return
nego_AcquireCredentialsHandle
(
fCredentialUse
,
phCredential
,
ptsExpiry
);
return
SEC_E_UNSUPPORTED_FUNCTION
;
}
/***********************************************************************
...
...
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