Author: akhaldi
Date: Thu Apr 24 15:53:15 2014
New Revision: 62951
URL:
http://svn.reactos.org/svn/reactos?rev=62951&view=rev
Log:
[WLDAP32]
* Sync with Wine 1.7.17.
CORE-8080
Modified:
trunk/reactos/dll/win32/wldap32/init.c
trunk/reactos/media/doc/README.WINE
Modified: trunk/reactos/dll/win32/wldap32/init.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/wldap32/init.c?r…
==============================================================================
--- trunk/reactos/dll/win32/wldap32/init.c [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/wldap32/init.c [iso-8859-1] Thu Apr 24 15:53:15 2014
@@ -98,13 +98,12 @@
}
/* Determine if a URL starts with a known LDAP scheme */
-static int 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;
+static BOOL has_ldap_scheme( char *url )
+{
+ 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.
Modified: trunk/reactos/media/doc/README.WINE
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/media/doc/README.WINE?rev=…
==============================================================================
--- trunk/reactos/media/doc/README.WINE [iso-8859-1] (original)
+++ trunk/reactos/media/doc/README.WINE [iso-8859-1] Thu Apr 24 15:53:15 2014
@@ -213,7 +213,7 @@
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