Skip to content
Snippets Groups Projects
Commit a1665712 authored by Kurt Zeilenga's avatar Kurt Zeilenga
Browse files

Fix LDAP_RANGE typo

parent 97bc1075
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment