Module: wine Branch: master Commit: ba68d864230a77ebf4dc8f5b6dc2b3d757718060 URL: http://source.winehq.org/git/wine.git/?a=commit;h=ba68d864230a77ebf4dc8f5b6d...
Author: Francois Gouget fgouget@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@free.fr Signed-off-by: Alexandre Julliard julliard@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,