mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-31 04:13:37 +00:00
[WLDAP32]
* Sync with Wine 1.7.17. CORE-8080 svn path=/trunk/; revision=62951
This commit is contained in:
@@ -98,13 +98,12 @@ oom:
|
||||
}
|
||||
|
||||
/* Determine if a URL starts with a known LDAP scheme */
|
||||
static int has_ldap_scheme( char *url )
|
||||
static BOOL has_ldap_scheme( char *url )
|
||||
{
|
||||
if (!strncasecmp( url, "ldap://", 7 ) ||
|
||||
!strncasecmp( url, "ldaps://", 8 ) ||
|
||||
!strncasecmp( url, "ldapi://", 8 ) ||
|
||||
!strncasecmp( url, "cldap://", 8 )) return 1;
|
||||
return 0;
|
||||
return !strncasecmp( url, "ldap://", 7 ) ||
|
||||
!strncasecmp( url, "ldaps://", 8 ) ||
|
||||
!strncasecmp( url, "ldapi://", 8 ) ||
|
||||
!strncasecmp( url, "cldap://", 8 );
|
||||
}
|
||||
|
||||
/* Flatten an array of hostnames into a space separated string of URLs.
|
||||
|
||||
@@ -213,7 +213,7 @@ reactos/dll/win32/winmm # Forked at Wine-20050628
|
||||
reactos/dll/win32/winmm/midimap # Forked at Wine-20050628
|
||||
reactos/dll/win32/winmm/wavemap # Forked at Wine-20050628
|
||||
reactos/dll/win32/wintrust # Synced to Wine-1.7.17
|
||||
reactos/dll/win32/wldap32 # Synced to Wine-1.7.1
|
||||
reactos/dll/win32/wldap32 # Synced to Wine-1.7.17
|
||||
reactos/dll/win32/wmi # Synced to Wine-1.7.17
|
||||
reactos/dll/win32/wtsapi32 # Synced to Wine-1.7.1
|
||||
reactos/dll/win32/wuapi # Synced to Wine-1.7.1
|
||||
|
||||
Reference in New Issue
Block a user