Francois Gouget : wldap32: Keep the error constants ordered.

Alexandre Julliard julliard at winehq.org
Fri Feb 10 16:02:25 CST 2017


Module: wine
Branch: master
Commit: ba68d864230a77ebf4dc8f5b6dc2b3d757718060
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=ba68d864230a77ebf4dc8f5b6dc2b3d757718060

Author: Francois Gouget <fgouget at free.fr>
Date:   Fri Feb 10 16:47:37 2017 +0100

wldap32: Keep the error constants ordered.

This simplifies verifying consistency with the corresponding error
messages.

Signed-off-by: Francois Gouget <fgouget at free.fr>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 include/winldap.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/winldap.h b/include/winldap.h
index 6d24575..2014e06 100644
--- a/include/winldap.h
+++ b/include/winldap.h
@@ -92,8 +92,8 @@ typedef enum {
     LDAP_NO_MEMORY                  =   0x5a,
     LDAP_CONNECT_ERROR              =   0x5b,
     LDAP_NOT_SUPPORTED              =   0x5c,
-    LDAP_NO_RESULTS_RETURNED        =   0x5e,
     LDAP_CONTROL_NOT_FOUND          =   0x5d,
+    LDAP_NO_RESULTS_RETURNED        =   0x5e,
     LDAP_MORE_RESULTS_TO_RETURN     =   0x5f,
 
     LDAP_CLIENT_LOOP                =   0x60,




More information about the wine-cvs mailing list