mirror of
https://github.com/reactos/reactos.git
synced 2024-12-31 19:42:51 +00:00
[WLDAP32]
- Fix MSVC const mismatch warnings svn path=/trunk/; revision=69741
This commit is contained in:
parent
22c6dc878b
commit
081c4f25c7
1 changed files with 2 additions and 2 deletions
|
@ -302,7 +302,7 @@ ULONG CDECL ldap_connect( WLDAP32_LDAP *ld, struct l_timeval *timeout )
|
|||
*
|
||||
* See ldap_initW.
|
||||
*/
|
||||
WLDAP32_LDAP * CDECL ldap_initA( PCHAR hostname, ULONG portnumber )
|
||||
WLDAP32_LDAP * CDECL ldap_initA( const PCHAR hostname, ULONG portnumber )
|
||||
{
|
||||
#ifdef HAVE_LDAP
|
||||
WLDAP32_LDAP *ld = NULL;
|
||||
|
@ -348,7 +348,7 @@ exit:
|
|||
* to this function. The connection will not be made until the first
|
||||
* LDAP function that needs it is called.
|
||||
*/
|
||||
WLDAP32_LDAP * CDECL ldap_initW( PWCHAR hostname, ULONG portnumber )
|
||||
WLDAP32_LDAP * CDECL ldap_initW( const PWCHAR hostname, ULONG portnumber )
|
||||
{
|
||||
#ifdef HAVE_LDAP
|
||||
LDAP *ld = NULL;
|
||||
|
|
Loading…
Reference in a new issue