Fix LDAP_RANGE typo

This commit is contained in:
Kurt Zeilenga 1999-07-01 21:56:53 +00:00
parent 97bc107537
commit a1665712f2

View file

@ -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