From: Pierangelo Masarati Date: Sat, 8 Jan 2005 11:25:11 +0000 (+0000) Subject: ITS#3469: C99 compliance X-Git-Tag: OPENLDAP_REL_ENG_2_3_BP~449 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=cd2e651c26dad11e86e8dbfc5f56cfdbfe28ebd2;p=openldap ITS#3469: C99 compliance --- diff --git a/servers/slapd/back-ldap/bind.c b/servers/slapd/back-ldap/bind.c index a0e2783d4f..c098acb8cb 100644 --- a/servers/slapd/back-ldap/bind.c +++ b/servers/slapd/back-ldap/bind.c @@ -575,8 +575,13 @@ ldap_back_proxy_authz_bind( struct ldapconn *lc, Operation *op, SlapReply *rs ) default: if ( li->idassert_authz ) { - struct berval authcDN = BER_BVISNULL( &op->o_conn->c_ndn ) ? slap_empty_bv : op->o_conn->c_ndn; + struct berval authcDN; + if ( BER_BVISNULL( &op->o_conn->c_ndn ) ) { + authcDN = slap_empty_bv; + } else { + authcDN = op->o_conn->c_ndn; + } rs->sr_err = slap_sasl_matches( op, li->idassert_authz, &authcDN, &authcDN ); if ( rs->sr_err != LDAP_SUCCESS ) { @@ -790,9 +795,13 @@ ldap_back_proxy_authz_ctrl( } else if ( li->idassert_authz ) { int rc; - struct berval authcDN = BER_BVISNULL( &op->o_conn->c_ndn ) ? slap_empty_bv : op->o_conn->c_ndn; - + struct berval authcDN; + if ( BER_BVISNULL( &op->o_conn->c_ndn ) ) { + authcDN = slap_empty_bv; + } else { + authcDN = op->o_conn->c_ndn; + } rc = slap_sasl_matches( op, li->idassert_authz, &authcDN, & authcDN ); if ( rc != LDAP_SUCCESS ) { @@ -836,7 +845,11 @@ ldap_back_proxy_authz_ctrl( case LDAP_BACK_IDASSERT_SELF: /* original behavior: * assert the client's identity */ - assertedID = BER_BVISNULL( &op->o_conn->c_ndn ) ? slap_empty_bv : op->o_conn->c_ndn; + if ( BER_BVISNULL( &op->o_conn->c_ndn ) ) { + assertedID = slap_empty_bv; + } else { + assertedID = op->o_conn->c_ndn; + } break; case LDAP_BACK_IDASSERT_ANONYMOUS: