mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-02-18 10:07:56 -05:00
Fix LDAP_RANGE typo
This commit is contained in:
parent
97bc107537
commit
a1665712f2
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue