gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] [gnurl] 133/208: ldap: fix MinGW compiler warning


From: gnunet
Subject: [GNUnet-SVN] [gnurl] 133/208: ldap: fix MinGW compiler warning
Date: Wed, 09 Aug 2017 17:35:30 +0200

This is an automated email from the git hooks/post-receive script.

ng0 pushed a commit to annotated tag gnurl-7.55.0
in repository gnurl.

commit b54e0babd74839159b0f0d34a6469f7ca327358c
Author: Marcel Raad <address@hidden>
AuthorDate: Sat Jul 8 17:33:58 2017 +0200

    ldap: fix MinGW compiler warning
    
    ldap_bind_s is marked as deprecated in w32api's winldap.h shipping with
    the latest original MinGW, resulting in compiler warnings since commit
    f0fe66f13c93d3d0af45d9fb1231c9164e0f9dc8. Fix this for the non-SSPI
    case by using ldap_simple_bind_s again instead of ldap_bind_s with
    LDAP_AUTH_SIMPLE.
    
    Closes https://github.com/curl/curl/pull/1664
---
 lib/ldap.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/lib/ldap.c b/lib/ldap.c
index 421393f11..435b990ab 100644
--- a/lib/ldap.c
+++ b/lib/ldap.c
@@ -235,7 +235,6 @@ static int ldap_win_bind(struct connectdata *conn, LDAP 
*server,
                          const char *user, const char *passwd)
 {
   int rc = LDAP_INVALID_CREDENTIALS;
-  ULONG method = LDAP_AUTH_SIMPLE;
 
   PTCHAR inuser = NULL;
   PTCHAR inpass = NULL;
@@ -244,7 +243,7 @@ static int ldap_win_bind(struct connectdata *conn, LDAP 
*server,
     inuser = Curl_convert_UTF8_to_tchar((char *) user);
     inpass = Curl_convert_UTF8_to_tchar((char *) passwd);
 
-    rc = ldap_bind_s(server, inuser, inpass, method);
+    rc = ldap_simple_bind_s(server, inuser, inpass);
 
     Curl_unicodefree(inuser);
     Curl_unicodefree(inpass);

-- 
To stop receiving notification emails like this one, please contact
address@hidden



reply via email to

[Prev in Thread] Current Thread [Next in Thread]