]> git.sur5r.net Git - openldap/commitdiff
ITS#3469: C99 compliance
authorPierangelo Masarati <ando@openldap.org>
Sat, 8 Jan 2005 11:25:11 +0000 (11:25 +0000)
committerPierangelo Masarati <ando@openldap.org>
Sat, 8 Jan 2005 11:25:11 +0000 (11:25 +0000)
servers/slapd/back-ldap/bind.c

index a0e2783d4f642778f53c48a9bb9f0d6c7dad6990..c098acb8cba5fa4f49feb78599dc909bd8daf577 100644 (file)
@@ -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: