mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-24 00:29:35 -05:00
parenthesize some macro args
This commit is contained in:
parent
2f76f6ce23
commit
08e2ce2d1d
1 changed files with 3 additions and 3 deletions
|
|
@ -1371,8 +1371,8 @@ typedef struct Access {
|
|||
#define ACL_PRIV_SET(m,p) do { (m) |= (p); } while(0)
|
||||
#define ACL_PRIV_CLR(m,p) do { (m) &= ~(p); } while(0)
|
||||
|
||||
#define ACL_INIT(m) ACL_PRIV_ASSIGN(m, ACL_PRIV_NONE)
|
||||
#define ACL_INVALIDATE(m) ACL_PRIV_ASSIGN(m, ACL_PRIV_INVALID)
|
||||
#define ACL_INIT(m) ACL_PRIV_ASSIGN((m), ACL_PRIV_NONE)
|
||||
#define ACL_INVALIDATE(m) ACL_PRIV_ASSIGN((m), ACL_PRIV_INVALID)
|
||||
|
||||
#define ACL_GRANT(m,a) ACL_PRIV_ISSET((m),ACL_ACCESS2PRIV(a))
|
||||
|
||||
|
|
@ -2687,7 +2687,7 @@ typedef struct OperationBuffer {
|
|||
|
||||
#define send_ldap_error( op, rs, err, text ) do { \
|
||||
(rs)->sr_err = err; (rs)->sr_text = text; \
|
||||
(op->o_conn->c_send_ldap_result)( op, rs ); \
|
||||
((op)->o_conn->c_send_ldap_result)( op, rs ); \
|
||||
} while (0)
|
||||
#define send_ldap_discon( op, rs, err, text ) do { \
|
||||
(rs)->sr_err = err; (rs)->sr_text = text; \
|
||||
|
|
|
|||
Loading…
Reference in a new issue