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

Clarify LDAP_ATTRCHAR

parent 517fa54b
Branches
Tags
No related merge requests found
......@@ -113,7 +113,7 @@ LDAP_F (int) ldap_pvt_unhex( int c );
#define LDAP_OIDCHAR(c) ( LDAP_DIGIT(c) || (c) == '.' )
#define LDAP_LEADATTRCHAR(c) ( LDAP_LEADKEYCHAR(c) || LDAP_LEADOIDCHAR(c) )
#define LDAP_ATTRCHAR(c) ( LDAP_KEYCHAR((c)) || (c) == '.' )
#define LDAP_ATTRCHAR(c) ( LDAP_KEYCHAR(c) || LDAP_OIDCHAR(c) )
#define LDAP_NEEDSESCAPE(c) ((c) == '\\' || (c) == '"')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment