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
d8e6a29d
Commit
d8e6a29d
authored
Mar 27, 2023
by
Alex Henrie
Committed by
Alexandre Julliard
Mar 28, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wldap32: Stub out setting LDAP_OPT_REFERRAL_HOP_LIMIT.
Wine-Bug:
https://bugs.winehq.org/show_bug.cgi?id=54727
parent
490e36c8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
option.c
dlls/wldap32/option.c
+5
-2
No files found.
dlls/wldap32/option.c
View file @
d8e6a29d
...
...
@@ -290,6 +290,7 @@ ULONG CDECL ldap_set_optionA( LDAP *ld, int option, void *value )
case
WLDAP32_LDAP_OPT_ERROR_NUMBER
:
case
WLDAP32_LDAP_OPT_PROTOCOL_VERSION
:
case
WLDAP32_LDAP_OPT_REFERRALS
:
case
WLDAP32_LDAP_OPT_REFERRAL_HOP_LIMIT
:
case
WLDAP32_LDAP_OPT_SIZELIMIT
:
case
WLDAP32_LDAP_OPT_SSL
:
case
WLDAP32_LDAP_OPT_TIMELIMIT
:
...
...
@@ -325,7 +326,6 @@ ULONG CDECL ldap_set_optionA( LDAP *ld, int option, void *value )
case
WLDAP32_LDAP_OPT_PROMPT_CREDENTIALS
:
case
WLDAP32_LDAP_OPT_REF_DEREF_CONN_PER_MSG
:
case
WLDAP32_LDAP_OPT_REFERRAL_CALLBACK
:
case
WLDAP32_LDAP_OPT_REFERRAL_HOP_LIMIT
:
case
WLDAP32_LDAP_OPT_ROOTDSE_CACHE
:
case
WLDAP32_LDAP_OPT_SASL_METHOD
:
case
WLDAP32_LDAP_OPT_SECURITY_CONTEXT
:
...
...
@@ -439,6 +439,10 @@ ULONG CDECL ldap_set_optionW( LDAP *ld, int option, void *value )
}
return
map_error
(
ldap_set_option
(
CTX
(
ld
),
option
,
value
)
);
}
case
WLDAP32_LDAP_OPT_REFERRAL_HOP_LIMIT
:
FIXME
(
"ignoring referral hop limit
\n
"
);
return
WLDAP32_LDAP_SUCCESS
;
case
WLDAP32_LDAP_OPT_DEREF
:
case
WLDAP32_LDAP_OPT_DESC
:
case
WLDAP32_LDAP_OPT_ERROR_NUMBER
:
...
...
@@ -507,7 +511,6 @@ ULONG CDECL ldap_set_optionW( LDAP *ld, int option, void *value )
case
WLDAP32_LDAP_OPT_PROMPT_CREDENTIALS
:
case
WLDAP32_LDAP_OPT_REF_DEREF_CONN_PER_MSG
:
case
WLDAP32_LDAP_OPT_REFERRAL_CALLBACK
:
case
WLDAP32_LDAP_OPT_REFERRAL_HOP_LIMIT
:
case
WLDAP32_LDAP_OPT_ROOTDSE_CACHE
:
case
WLDAP32_LDAP_OPT_SASL_METHOD
:
case
WLDAP32_LDAP_OPT_SECURITY_CONTEXT
:
...
...
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