From: Kurt Zeilenga Date: Thu, 1 Jul 1999 21:56:53 +0000 (+0000) Subject: Fix LDAP_RANGE typo X-Git-Tag: OPENLDAP_REL_ENG_2_BP~203 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=a1665712f2ed6169007eb4ab6c620f6692d75a65;p=openldap Fix LDAP_RANGE typo --- diff --git a/include/ldap.h b/include/ldap.h index 85b968a75e..8712dec1d7 100644 --- a/include/ldap.h +++ b/include/ldap.h @@ -289,7 +289,7 @@ typedef struct ldapmod { * possible error codes we can return */ -#define LDAP_RANGE(n,x,y) (((x) >= (n)) && ((n) <= (y))) +#define LDAP_RANGE(n,x,y) (((x) <= (n)) && ((n) <= (y))) #define LDAP_SUCCESS 0x00 #define LDAP_OPERATIONS_ERROR 0x01